scene_ROPE.scene 124 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "scene_ROPE",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "scene_ROPE",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": null,
  26. "_lpos": {
  27. "__type__": "cc.Vec3",
  28. "x": 0,
  29. "y": 0,
  30. "z": 0
  31. },
  32. "_lrot": {
  33. "__type__": "cc.Quat",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0,
  37. "w": 1
  38. },
  39. "_lscale": {
  40. "__type__": "cc.Vec3",
  41. "x": 1,
  42. "y": 1,
  43. "z": 1
  44. },
  45. "_mobility": 0,
  46. "_layer": 1073741824,
  47. "_euler": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "autoReleaseAssets": false,
  54. "_globals": {
  55. "__id__": 216
  56. },
  57. "_id": "f7f2fb3a-15fb-4312-b3f1-1c010a81be23"
  58. },
  59. {
  60. "__type__": "cc.Node",
  61. "_name": "Canvas",
  62. "_objFlags": 0,
  63. "__editorExtras__": {},
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 5
  73. },
  74. {
  75. "__id__": 14
  76. },
  77. {
  78. "__id__": 187
  79. },
  80. {
  81. "__id__": 193
  82. },
  83. {
  84. "__id__": 102
  85. },
  86. {
  87. "__id__": 199
  88. },
  89. {
  90. "__id__": 205
  91. }
  92. ],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 213
  97. },
  98. {
  99. "__id__": 214
  100. },
  101. {
  102. "__id__": 215
  103. }
  104. ],
  105. "_prefab": null,
  106. "_lpos": {
  107. "__type__": "cc.Vec3",
  108. "x": 812,
  109. "y": 375,
  110. "z": 0
  111. },
  112. "_lrot": {
  113. "__type__": "cc.Quat",
  114. "x": 0,
  115. "y": 0,
  116. "z": 0,
  117. "w": 1
  118. },
  119. "_lscale": {
  120. "__type__": "cc.Vec3",
  121. "x": 1,
  122. "y": 1,
  123. "z": 1
  124. },
  125. "_mobility": 0,
  126. "_layer": 33554432,
  127. "_euler": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_id": "cdWzbWiHxIlKIuG4zh5mYw"
  134. },
  135. {
  136. "__type__": "cc.Node",
  137. "_name": "Camera",
  138. "_objFlags": 512,
  139. "__editorExtras__": {},
  140. "_parent": {
  141. "__id__": 2
  142. },
  143. "_children": [],
  144. "_active": true,
  145. "_components": [
  146. {
  147. "__id__": 4
  148. }
  149. ],
  150. "_prefab": null,
  151. "_lpos": {
  152. "__type__": "cc.Vec3",
  153. "x": 0,
  154. "y": 0,
  155. "z": 1000
  156. },
  157. "_lrot": {
  158. "__type__": "cc.Quat",
  159. "x": 0,
  160. "y": 0,
  161. "z": 0,
  162. "w": 1
  163. },
  164. "_lscale": {
  165. "__type__": "cc.Vec3",
  166. "x": 1,
  167. "y": 1,
  168. "z": 1
  169. },
  170. "_mobility": 0,
  171. "_layer": 1073741824,
  172. "_euler": {
  173. "__type__": "cc.Vec3",
  174. "x": 0,
  175. "y": 0,
  176. "z": 0
  177. },
  178. "_id": "7fKwc0pd9Nz6quXxBZRv5s"
  179. },
  180. {
  181. "__type__": "cc.Camera",
  182. "_name": "",
  183. "_objFlags": 0,
  184. "__editorExtras__": {},
  185. "node": {
  186. "__id__": 3
  187. },
  188. "_enabled": true,
  189. "__prefab": null,
  190. "_projection": 0,
  191. "_priority": 0,
  192. "_fov": 45,
  193. "_fovAxis": 0,
  194. "_orthoHeight": 451.7781885397412,
  195. "_near": 1,
  196. "_far": 2000,
  197. "_color": {
  198. "__type__": "cc.Color",
  199. "r": 48,
  200. "g": 48,
  201. "b": 48,
  202. "a": 255
  203. },
  204. "_depth": 1,
  205. "_stencil": 0,
  206. "_clearFlags": 7,
  207. "_rect": {
  208. "__type__": "cc.Rect",
  209. "x": 0,
  210. "y": 0,
  211. "width": 1,
  212. "height": 1
  213. },
  214. "_aperture": 19,
  215. "_shutter": 7,
  216. "_iso": 0,
  217. "_screenScale": 1,
  218. "_visibility": 1408253952,
  219. "_targetTexture": null,
  220. "_postProcess": null,
  221. "_usePostProcess": false,
  222. "_cameraType": -1,
  223. "_trackingType": 0,
  224. "_id": "ccsHKyNMtMep5i+nsQBcQI"
  225. },
  226. {
  227. "__type__": "cc.Node",
  228. "_name": "ceilstatic",
  229. "_objFlags": 0,
  230. "__editorExtras__": {},
  231. "_parent": {
  232. "__id__": 2
  233. },
  234. "_children": [],
  235. "_active": true,
  236. "_components": [
  237. {
  238. "__id__": 6
  239. },
  240. {
  241. "__id__": 7
  242. },
  243. {
  244. "__id__": 8
  245. },
  246. {
  247. "__id__": 9
  248. },
  249. {
  250. "__id__": 10
  251. },
  252. {
  253. "__id__": 11
  254. },
  255. {
  256. "__id__": 99
  257. }
  258. ],
  259. "_prefab": null,
  260. "_lpos": {
  261. "__type__": "cc.Vec3",
  262. "x": 149.747,
  263. "y": 369.287,
  264. "z": 0
  265. },
  266. "_lrot": {
  267. "__type__": "cc.Quat",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0,
  271. "w": 1
  272. },
  273. "_lscale": {
  274. "__type__": "cc.Vec3",
  275. "x": 1,
  276. "y": 1,
  277. "z": 1
  278. },
  279. "_mobility": 0,
  280. "_layer": 33554432,
  281. "_euler": {
  282. "__type__": "cc.Vec3",
  283. "x": 0,
  284. "y": 0,
  285. "z": 0
  286. },
  287. "_id": "529qF0sr5G5rT9QhhZOfmO"
  288. },
  289. {
  290. "__type__": "cc.UITransform",
  291. "_name": "",
  292. "_objFlags": 0,
  293. "__editorExtras__": {},
  294. "node": {
  295. "__id__": 5
  296. },
  297. "_enabled": true,
  298. "__prefab": null,
  299. "_contentSize": {
  300. "__type__": "cc.Size",
  301. "width": 673.2429999999999,
  302. "height": 68.267
  303. },
  304. "_anchorPoint": {
  305. "__type__": "cc.Vec2",
  306. "x": 0.5,
  307. "y": 0.5
  308. },
  309. "_id": "38LOouV7NLeb1NfhJ9PpQ9"
  310. },
  311. {
  312. "__type__": "cc.Sprite",
  313. "_name": "",
  314. "_objFlags": 0,
  315. "__editorExtras__": {},
  316. "node": {
  317. "__id__": 5
  318. },
  319. "_enabled": true,
  320. "__prefab": null,
  321. "_customMaterial": null,
  322. "_srcBlendFactor": 2,
  323. "_dstBlendFactor": 4,
  324. "_color": {
  325. "__type__": "cc.Color",
  326. "r": 255,
  327. "g": 255,
  328. "b": 255,
  329. "a": 255
  330. },
  331. "_spriteFrame": {
  332. "__uuid__": "a38566f6-6dc6-4693-bb98-44481e42d5f1@f9941",
  333. "__expectedType__": "cc.SpriteFrame"
  334. },
  335. "_type": 1,
  336. "_fillType": 0,
  337. "_sizeMode": 0,
  338. "_fillCenter": {
  339. "__type__": "cc.Vec2",
  340. "x": 0,
  341. "y": 0
  342. },
  343. "_fillStart": 0,
  344. "_fillRange": 0,
  345. "_isTrimmedMode": true,
  346. "_useGrayscale": false,
  347. "_atlas": null,
  348. "_id": "15PqZ9MidCZ4lMxYjrx/X6"
  349. },
  350. {
  351. "__type__": "cc.RigidBody2D",
  352. "_name": "",
  353. "_objFlags": 0,
  354. "__editorExtras__": {},
  355. "node": {
  356. "__id__": 5
  357. },
  358. "_enabled": true,
  359. "__prefab": null,
  360. "enabledContactListener": false,
  361. "bullet": false,
  362. "awakeOnLoad": true,
  363. "_group": 1,
  364. "_type": 0,
  365. "_allowSleep": true,
  366. "_gravityScale": 1,
  367. "_linearDamping": 0,
  368. "_angularDamping": 0,
  369. "_linearVelocity": {
  370. "__type__": "cc.Vec2",
  371. "x": 0,
  372. "y": 0
  373. },
  374. "_angularVelocity": 0,
  375. "_fixedRotation": false,
  376. "_id": "1f9tbkVuNLkorfSxj3goKD"
  377. },
  378. {
  379. "__type__": "cc.UIOpacity",
  380. "_name": "",
  381. "_objFlags": 0,
  382. "__editorExtras__": {},
  383. "node": {
  384. "__id__": 5
  385. },
  386. "_enabled": true,
  387. "__prefab": null,
  388. "_opacity": 100,
  389. "_id": "8fHo7dZzVAMoZpwvO3Qtmu"
  390. },
  391. {
  392. "__type__": "cc.BoxCollider2D",
  393. "_name": "",
  394. "_objFlags": 0,
  395. "__editorExtras__": {},
  396. "node": {
  397. "__id__": 5
  398. },
  399. "_enabled": true,
  400. "__prefab": null,
  401. "tag": 0,
  402. "_group": 1,
  403. "_density": 1,
  404. "_sensor": false,
  405. "_friction": 0.2,
  406. "_restitution": 0,
  407. "_offset": {
  408. "__type__": "cc.Vec2",
  409. "x": 0,
  410. "y": 0
  411. },
  412. "_size": {
  413. "__type__": "cc.Size",
  414. "width": 673.2429999999999,
  415. "height": 68.267
  416. },
  417. "_id": "76amXkWARJNaIStDOcXBnQ"
  418. },
  419. {
  420. "__type__": "cc.HingeJoint2D",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "__editorExtras__": {},
  424. "node": {
  425. "__id__": 5
  426. },
  427. "_enabled": true,
  428. "__prefab": null,
  429. "anchor": {
  430. "__type__": "cc.Vec2",
  431. "x": 223.2,
  432. "y": -14
  433. },
  434. "connectedAnchor": {
  435. "__type__": "cc.Vec2",
  436. "x": 0,
  437. "y": 0
  438. },
  439. "collideConnected": false,
  440. "connectedBody": {
  441. "__id__": 12
  442. },
  443. "_enableLimit": false,
  444. "_lowerAngle": 0,
  445. "_upperAngle": 0,
  446. "_enableMotor": false,
  447. "_maxMotorTorque": 1000,
  448. "_motorSpeed": 0,
  449. "_id": "5bU3x6OVJP27KgsXMM4mq6"
  450. },
  451. {
  452. "__type__": "cc.RigidBody2D",
  453. "_name": "",
  454. "_objFlags": 0,
  455. "__editorExtras__": {},
  456. "node": {
  457. "__id__": 13
  458. },
  459. "_enabled": true,
  460. "__prefab": null,
  461. "enabledContactListener": false,
  462. "bullet": false,
  463. "awakeOnLoad": true,
  464. "_group": 1,
  465. "_type": 2,
  466. "_allowSleep": true,
  467. "_gravityScale": 1,
  468. "_linearDamping": 0,
  469. "_angularDamping": 0,
  470. "_linearVelocity": {
  471. "__type__": "cc.Vec2",
  472. "x": 0,
  473. "y": 0
  474. },
  475. "_angularVelocity": 0,
  476. "_fixedRotation": false,
  477. "_id": "11sp1F79FEb70lCEE3cwv9"
  478. },
  479. {
  480. "__type__": "cc.Node",
  481. "_name": "gizmo_2",
  482. "_objFlags": 0,
  483. "__editorExtras__": {},
  484. "_parent": {
  485. "__id__": 14
  486. },
  487. "_children": [],
  488. "_active": true,
  489. "_components": [
  490. {
  491. "__id__": 93
  492. },
  493. {
  494. "__id__": 94
  495. },
  496. {
  497. "__id__": 95
  498. },
  499. {
  500. "__id__": 96
  501. },
  502. {
  503. "__id__": 12
  504. },
  505. {
  506. "__id__": 97
  507. },
  508. {
  509. "__id__": 98
  510. }
  511. ],
  512. "_prefab": null,
  513. "_lpos": {
  514. "__type__": "cc.Vec3",
  515. "x": -63.26099999999997,
  516. "y": 382.25499999999994,
  517. "z": 0
  518. },
  519. "_lrot": {
  520. "__type__": "cc.Quat",
  521. "x": 0,
  522. "y": 0,
  523. "z": 0.3193567276085698,
  524. "w": -0.9476345711988065
  525. },
  526. "_lscale": {
  527. "__type__": "cc.Vec3",
  528. "x": 1,
  529. "y": 1,
  530. "z": 1
  531. },
  532. "_mobility": 0,
  533. "_layer": 1073741824,
  534. "_euler": {
  535. "__type__": "cc.Vec3",
  536. "x": 0,
  537. "y": 0,
  538. "z": 322.75194606786016
  539. },
  540. "_id": "caqm6uHlRPi6zxkrLTcIig"
  541. },
  542. {
  543. "__type__": "cc.Node",
  544. "_name": "CT_ROPE",
  545. "_objFlags": 0,
  546. "__editorExtras__": {},
  547. "_parent": {
  548. "__id__": 2
  549. },
  550. "_children": [
  551. {
  552. "__id__": 15
  553. },
  554. {
  555. "__id__": 20
  556. },
  557. {
  558. "__id__": 13
  559. },
  560. {
  561. "__id__": 25
  562. },
  563. {
  564. "__id__": 33
  565. },
  566. {
  567. "__id__": 40
  568. },
  569. {
  570. "__id__": 47
  571. },
  572. {
  573. "__id__": 54
  574. },
  575. {
  576. "__id__": 61
  577. },
  578. {
  579. "__id__": 68
  580. },
  581. {
  582. "__id__": 75
  583. }
  584. ],
  585. "_active": true,
  586. "_components": [
  587. {
  588. "__id__": 88
  589. },
  590. {
  591. "__id__": 89
  592. },
  593. {
  594. "__id__": 91
  595. },
  596. {
  597. "__id__": 92
  598. }
  599. ],
  600. "_prefab": null,
  601. "_lpos": {
  602. "__type__": "cc.Vec3",
  603. "x": 436.368,
  604. "y": -26.979,
  605. "z": 0
  606. },
  607. "_lrot": {
  608. "__type__": "cc.Quat",
  609. "x": 0,
  610. "y": 0,
  611. "z": 0,
  612. "w": 1
  613. },
  614. "_lscale": {
  615. "__type__": "cc.Vec3",
  616. "x": 1,
  617. "y": 1,
  618. "z": 1
  619. },
  620. "_mobility": 0,
  621. "_layer": 33554432,
  622. "_euler": {
  623. "__type__": "cc.Vec3",
  624. "x": 0,
  625. "y": 0,
  626. "z": 0
  627. },
  628. "_id": "5f9dVr3kFI7LL5FajLnvUi"
  629. },
  630. {
  631. "__type__": "cc.Node",
  632. "_name": "_tailNode_",
  633. "_objFlags": 0,
  634. "__editorExtras__": {},
  635. "_parent": {
  636. "__id__": 14
  637. },
  638. "_children": [],
  639. "_active": true,
  640. "_components": [
  641. {
  642. "__id__": 16
  643. },
  644. {
  645. "__id__": 18
  646. },
  647. {
  648. "__id__": 19
  649. }
  650. ],
  651. "_prefab": null,
  652. "_lpos": {
  653. "__type__": "cc.Vec3",
  654. "x": 0,
  655. "y": 0,
  656. "z": 0
  657. },
  658. "_lrot": {
  659. "__type__": "cc.Quat",
  660. "x": 0,
  661. "y": 0,
  662. "z": 0,
  663. "w": 1
  664. },
  665. "_lscale": {
  666. "__type__": "cc.Vec3",
  667. "x": 1,
  668. "y": 1,
  669. "z": 1
  670. },
  671. "_mobility": 0,
  672. "_layer": 1073741824,
  673. "_euler": {
  674. "__type__": "cc.Vec3",
  675. "x": 0,
  676. "y": 0,
  677. "z": 0
  678. },
  679. "_id": "7fl/OE8RlFuoWZK9SNFMBi"
  680. },
  681. {
  682. "__type__": "cc.MeshRenderer",
  683. "_name": "",
  684. "_objFlags": 0,
  685. "__editorExtras__": {},
  686. "node": {
  687. "__id__": 15
  688. },
  689. "_enabled": true,
  690. "__prefab": null,
  691. "_materials": [
  692. null
  693. ],
  694. "_visFlags": 0,
  695. "bakeSettings": {
  696. "__id__": 17
  697. },
  698. "_mesh": null,
  699. "_shadowCastingMode": 0,
  700. "_shadowReceivingMode": 1,
  701. "_shadowBias": 0,
  702. "_shadowNormalBias": 0,
  703. "_reflectionProbeId": -1,
  704. "_reflectionProbeBlendId": -1,
  705. "_reflectionProbeBlendWeight": 0,
  706. "_enabledGlobalStandardSkinObject": false,
  707. "_enableMorph": true,
  708. "_id": "2aIL5JysdPS4eVZpUcnsR2"
  709. },
  710. {
  711. "__type__": "cc.ModelBakeSettings",
  712. "texture": null,
  713. "uvParam": {
  714. "__type__": "cc.Vec4",
  715. "x": 0,
  716. "y": 0,
  717. "z": 0,
  718. "w": 0
  719. },
  720. "_bakeable": false,
  721. "_castShadow": false,
  722. "_receiveShadow": false,
  723. "_recieveShadow": false,
  724. "_lightmapSize": 64,
  725. "_useLightProbe": false,
  726. "_bakeToLightProbe": true,
  727. "_reflectionProbeType": 0,
  728. "_bakeToReflectionProbe": true
  729. },
  730. {
  731. "__type__": "cc.UIMeshRenderer",
  732. "_name": "",
  733. "_objFlags": 0,
  734. "__editorExtras__": {},
  735. "node": {
  736. "__id__": 15
  737. },
  738. "_enabled": true,
  739. "__prefab": null,
  740. "_id": "99oAZ2OHVFSL8VVwSj1Lkn"
  741. },
  742. {
  743. "__type__": "cc.UITransform",
  744. "_name": "",
  745. "_objFlags": 0,
  746. "__editorExtras__": {},
  747. "node": {
  748. "__id__": 15
  749. },
  750. "_enabled": true,
  751. "__prefab": null,
  752. "_contentSize": {
  753. "__type__": "cc.Size",
  754. "width": 100,
  755. "height": 100
  756. },
  757. "_anchorPoint": {
  758. "__type__": "cc.Vec2",
  759. "x": 0.5,
  760. "y": 0.5
  761. },
  762. "_id": "fcFhDXqo5GYpCFfVSdm5sN"
  763. },
  764. {
  765. "__type__": "cc.Node",
  766. "_name": "_headNode_",
  767. "_objFlags": 0,
  768. "__editorExtras__": {},
  769. "_parent": {
  770. "__id__": 14
  771. },
  772. "_children": [],
  773. "_active": true,
  774. "_components": [
  775. {
  776. "__id__": 21
  777. },
  778. {
  779. "__id__": 23
  780. },
  781. {
  782. "__id__": 24
  783. }
  784. ],
  785. "_prefab": null,
  786. "_lpos": {
  787. "__type__": "cc.Vec3",
  788. "x": 0,
  789. "y": 0,
  790. "z": 0
  791. },
  792. "_lrot": {
  793. "__type__": "cc.Quat",
  794. "x": 0,
  795. "y": 0,
  796. "z": 0,
  797. "w": 1
  798. },
  799. "_lscale": {
  800. "__type__": "cc.Vec3",
  801. "x": 1,
  802. "y": 1,
  803. "z": 1
  804. },
  805. "_mobility": 0,
  806. "_layer": 1073741824,
  807. "_euler": {
  808. "__type__": "cc.Vec3",
  809. "x": 0,
  810. "y": 0,
  811. "z": 0
  812. },
  813. "_id": "90leEimrJLoZqAhaiqefza"
  814. },
  815. {
  816. "__type__": "cc.MeshRenderer",
  817. "_name": "",
  818. "_objFlags": 0,
  819. "__editorExtras__": {},
  820. "node": {
  821. "__id__": 20
  822. },
  823. "_enabled": true,
  824. "__prefab": null,
  825. "_materials": [
  826. null
  827. ],
  828. "_visFlags": 0,
  829. "bakeSettings": {
  830. "__id__": 22
  831. },
  832. "_mesh": null,
  833. "_shadowCastingMode": 0,
  834. "_shadowReceivingMode": 1,
  835. "_shadowBias": 0,
  836. "_shadowNormalBias": 0,
  837. "_reflectionProbeId": -1,
  838. "_reflectionProbeBlendId": -1,
  839. "_reflectionProbeBlendWeight": 0,
  840. "_enabledGlobalStandardSkinObject": false,
  841. "_enableMorph": true,
  842. "_id": "89NU0OgTdKyaFLLazN1TJA"
  843. },
  844. {
  845. "__type__": "cc.ModelBakeSettings",
  846. "texture": null,
  847. "uvParam": {
  848. "__type__": "cc.Vec4",
  849. "x": 0,
  850. "y": 0,
  851. "z": 0,
  852. "w": 0
  853. },
  854. "_bakeable": false,
  855. "_castShadow": false,
  856. "_receiveShadow": false,
  857. "_recieveShadow": false,
  858. "_lightmapSize": 64,
  859. "_useLightProbe": false,
  860. "_bakeToLightProbe": true,
  861. "_reflectionProbeType": 0,
  862. "_bakeToReflectionProbe": true
  863. },
  864. {
  865. "__type__": "cc.UIMeshRenderer",
  866. "_name": "",
  867. "_objFlags": 0,
  868. "__editorExtras__": {},
  869. "node": {
  870. "__id__": 20
  871. },
  872. "_enabled": true,
  873. "__prefab": null,
  874. "_id": "45mUJhiUhOY6r8nQN1SgTo"
  875. },
  876. {
  877. "__type__": "cc.UITransform",
  878. "_name": "",
  879. "_objFlags": 0,
  880. "__editorExtras__": {},
  881. "node": {
  882. "__id__": 20
  883. },
  884. "_enabled": true,
  885. "__prefab": null,
  886. "_contentSize": {
  887. "__type__": "cc.Size",
  888. "width": 100,
  889. "height": 100
  890. },
  891. "_anchorPoint": {
  892. "__type__": "cc.Vec2",
  893. "x": 0.5,
  894. "y": 0.5
  895. },
  896. "_id": "d2mJzNTppGII3Kn77wfxrk"
  897. },
  898. {
  899. "__type__": "cc.Node",
  900. "_name": "gizmo_5",
  901. "_objFlags": 0,
  902. "__editorExtras__": {},
  903. "_parent": {
  904. "__id__": 14
  905. },
  906. "_children": [],
  907. "_active": true,
  908. "_components": [
  909. {
  910. "__id__": 26
  911. },
  912. {
  913. "__id__": 27
  914. },
  915. {
  916. "__id__": 28
  917. },
  918. {
  919. "__id__": 29
  920. },
  921. {
  922. "__id__": 30
  923. },
  924. {
  925. "__id__": 31
  926. },
  927. {
  928. "__id__": 87
  929. }
  930. ],
  931. "_prefab": null,
  932. "_lpos": {
  933. "__type__": "cc.Vec3",
  934. "x": 1.892,
  935. "y": 332.715,
  936. "z": 0
  937. },
  938. "_lrot": {
  939. "__type__": "cc.Quat",
  940. "x": 0,
  941. "y": 0,
  942. "z": 0.31383264658448035,
  943. "w": -0.9494783146221828
  944. },
  945. "_lscale": {
  946. "__type__": "cc.Vec3",
  947. "x": 1,
  948. "y": 1,
  949. "z": 1
  950. },
  951. "_mobility": 0,
  952. "_layer": 1073741824,
  953. "_euler": {
  954. "__type__": "cc.Vec3",
  955. "x": 0,
  956. "y": 0,
  957. "z": 323.41928776630783
  958. },
  959. "_id": "cdBoSOWf1JJKx4MShzanqQ"
  960. },
  961. {
  962. "__type__": "cc.UIOpacity",
  963. "_name": "",
  964. "_objFlags": 0,
  965. "__editorExtras__": {},
  966. "node": {
  967. "__id__": 25
  968. },
  969. "_enabled": true,
  970. "__prefab": null,
  971. "_opacity": 255,
  972. "_id": "e4tpRz+jZHB6ukryvwke7q"
  973. },
  974. {
  975. "__type__": "cc.UITransform",
  976. "_name": "",
  977. "_objFlags": 0,
  978. "__editorExtras__": {},
  979. "node": {
  980. "__id__": 25
  981. },
  982. "_enabled": true,
  983. "__prefab": null,
  984. "_contentSize": {
  985. "__type__": "cc.Size",
  986. "width": 80,
  987. "height": 80
  988. },
  989. "_anchorPoint": {
  990. "__type__": "cc.Vec2",
  991. "x": 0.5,
  992. "y": 0.5
  993. },
  994. "_id": "2a3PMuGs9BprOkS75B51bu"
  995. },
  996. {
  997. "__type__": "cc.Sprite",
  998. "_name": "",
  999. "_objFlags": 0,
  1000. "__editorExtras__": {},
  1001. "node": {
  1002. "__id__": 25
  1003. },
  1004. "_enabled": true,
  1005. "__prefab": null,
  1006. "_customMaterial": null,
  1007. "_srcBlendFactor": 2,
  1008. "_dstBlendFactor": 4,
  1009. "_color": {
  1010. "__type__": "cc.Color",
  1011. "r": 255,
  1012. "g": 156,
  1013. "b": 156,
  1014. "a": 17
  1015. },
  1016. "_spriteFrame": {
  1017. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1018. "__expectedType__": "cc.SpriteFrame"
  1019. },
  1020. "_type": 0,
  1021. "_fillType": 0,
  1022. "_sizeMode": 0,
  1023. "_fillCenter": {
  1024. "__type__": "cc.Vec2",
  1025. "x": 0,
  1026. "y": 0
  1027. },
  1028. "_fillStart": 0,
  1029. "_fillRange": 0,
  1030. "_isTrimmedMode": true,
  1031. "_useGrayscale": false,
  1032. "_atlas": null,
  1033. "_id": "4bqV7wYehN9a2AzCZUDEEf"
  1034. },
  1035. {
  1036. "__type__": "cc.CircleCollider2D",
  1037. "_name": "",
  1038. "_objFlags": 0,
  1039. "__editorExtras__": {},
  1040. "node": {
  1041. "__id__": 25
  1042. },
  1043. "_enabled": true,
  1044. "__prefab": null,
  1045. "tag": 0,
  1046. "_group": 1,
  1047. "_density": 0.1,
  1048. "_sensor": false,
  1049. "_friction": 0.2,
  1050. "_restitution": 0.1,
  1051. "_offset": {
  1052. "__type__": "cc.Vec2",
  1053. "x": 0,
  1054. "y": 0
  1055. },
  1056. "_radius": 7.1,
  1057. "_id": "2aS9OzydVH05yHEfUJMuX4"
  1058. },
  1059. {
  1060. "__type__": "cc.RigidBody2D",
  1061. "_name": "",
  1062. "_objFlags": 0,
  1063. "__editorExtras__": {},
  1064. "node": {
  1065. "__id__": 25
  1066. },
  1067. "_enabled": true,
  1068. "__prefab": null,
  1069. "enabledContactListener": false,
  1070. "bullet": false,
  1071. "awakeOnLoad": true,
  1072. "_group": 1,
  1073. "_type": 2,
  1074. "_allowSleep": true,
  1075. "_gravityScale": 1,
  1076. "_linearDamping": 0,
  1077. "_angularDamping": 0,
  1078. "_linearVelocity": {
  1079. "__type__": "cc.Vec2",
  1080. "x": 0,
  1081. "y": 0
  1082. },
  1083. "_angularVelocity": 0,
  1084. "_fixedRotation": false,
  1085. "_id": "bchoVgHjBHKbJHBjxMajIJ"
  1086. },
  1087. {
  1088. "__type__": "cc.HingeJoint2D",
  1089. "_name": "",
  1090. "_objFlags": 0,
  1091. "__editorExtras__": {},
  1092. "node": {
  1093. "__id__": 25
  1094. },
  1095. "_enabled": true,
  1096. "__prefab": null,
  1097. "anchor": {
  1098. "__type__": "cc.Vec2",
  1099. "x": 81.9,
  1100. "y": -0.3
  1101. },
  1102. "connectedAnchor": {
  1103. "__type__": "cc.Vec2",
  1104. "x": 0,
  1105. "y": 0
  1106. },
  1107. "collideConnected": false,
  1108. "connectedBody": {
  1109. "__id__": 32
  1110. },
  1111. "_enableLimit": false,
  1112. "_lowerAngle": 0,
  1113. "_upperAngle": 0,
  1114. "_enableMotor": false,
  1115. "_maxMotorTorque": 1000,
  1116. "_motorSpeed": 0,
  1117. "_id": "bc3X5YBJRDTK63uoYhgfWH"
  1118. },
  1119. {
  1120. "__type__": "cc.RigidBody2D",
  1121. "_name": "",
  1122. "_objFlags": 0,
  1123. "__editorExtras__": {},
  1124. "node": {
  1125. "__id__": 33
  1126. },
  1127. "_enabled": true,
  1128. "__prefab": null,
  1129. "enabledContactListener": false,
  1130. "bullet": false,
  1131. "awakeOnLoad": true,
  1132. "_group": 1,
  1133. "_type": 2,
  1134. "_allowSleep": true,
  1135. "_gravityScale": 1,
  1136. "_linearDamping": 0,
  1137. "_angularDamping": 0,
  1138. "_linearVelocity": {
  1139. "__type__": "cc.Vec2",
  1140. "x": 0,
  1141. "y": 0
  1142. },
  1143. "_angularVelocity": 0,
  1144. "_fixedRotation": false,
  1145. "_id": "b7XTx2ln5Dq5fxfJAImEHS"
  1146. },
  1147. {
  1148. "__type__": "cc.Node",
  1149. "_name": "gizmo_6",
  1150. "_objFlags": 0,
  1151. "__editorExtras__": {},
  1152. "_parent": {
  1153. "__id__": 14
  1154. },
  1155. "_children": [],
  1156. "_active": true,
  1157. "_components": [
  1158. {
  1159. "__id__": 34
  1160. },
  1161. {
  1162. "__id__": 35
  1163. },
  1164. {
  1165. "__id__": 36
  1166. },
  1167. {
  1168. "__id__": 37
  1169. },
  1170. {
  1171. "__id__": 32
  1172. },
  1173. {
  1174. "__id__": 38
  1175. },
  1176. {
  1177. "__id__": 86
  1178. }
  1179. ],
  1180. "_prefab": null,
  1181. "_lpos": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 67.6087500000001,
  1184. "y": 283.94374999999997,
  1185. "z": 0
  1186. },
  1187. "_lrot": {
  1188. "__type__": "cc.Quat",
  1189. "x": 0,
  1190. "y": 0,
  1191. "z": 0.31138810556964086,
  1192. "w": -0.9502828251156338
  1193. },
  1194. "_lscale": {
  1195. "__type__": "cc.Vec3",
  1196. "x": 1,
  1197. "y": 1,
  1198. "z": 1
  1199. },
  1200. "_mobility": 0,
  1201. "_layer": 1073741824,
  1202. "_euler": {
  1203. "__type__": "cc.Vec3",
  1204. "x": 0,
  1205. "y": 0,
  1206. "z": 323.7141917997981
  1207. },
  1208. "_id": "2fiFKKM61OtawRtoPn+7wT"
  1209. },
  1210. {
  1211. "__type__": "cc.UIOpacity",
  1212. "_name": "",
  1213. "_objFlags": 0,
  1214. "__editorExtras__": {},
  1215. "node": {
  1216. "__id__": 33
  1217. },
  1218. "_enabled": true,
  1219. "__prefab": null,
  1220. "_opacity": 255,
  1221. "_id": "a35WBfdAVMbI/DiQBBYlnZ"
  1222. },
  1223. {
  1224. "__type__": "cc.UITransform",
  1225. "_name": "",
  1226. "_objFlags": 0,
  1227. "__editorExtras__": {},
  1228. "node": {
  1229. "__id__": 33
  1230. },
  1231. "_enabled": true,
  1232. "__prefab": null,
  1233. "_contentSize": {
  1234. "__type__": "cc.Size",
  1235. "width": 80,
  1236. "height": 80
  1237. },
  1238. "_anchorPoint": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0.5,
  1241. "y": 0.5
  1242. },
  1243. "_id": "48JhvkrJtHKIMFOPtXtlly"
  1244. },
  1245. {
  1246. "__type__": "cc.Sprite",
  1247. "_name": "",
  1248. "_objFlags": 0,
  1249. "__editorExtras__": {},
  1250. "node": {
  1251. "__id__": 33
  1252. },
  1253. "_enabled": true,
  1254. "__prefab": null,
  1255. "_customMaterial": null,
  1256. "_srcBlendFactor": 2,
  1257. "_dstBlendFactor": 4,
  1258. "_color": {
  1259. "__type__": "cc.Color",
  1260. "r": 255,
  1261. "g": 156,
  1262. "b": 156,
  1263. "a": 17
  1264. },
  1265. "_spriteFrame": {
  1266. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1267. "__expectedType__": "cc.SpriteFrame"
  1268. },
  1269. "_type": 0,
  1270. "_fillType": 0,
  1271. "_sizeMode": 0,
  1272. "_fillCenter": {
  1273. "__type__": "cc.Vec2",
  1274. "x": 0,
  1275. "y": 0
  1276. },
  1277. "_fillStart": 0,
  1278. "_fillRange": 0,
  1279. "_isTrimmedMode": true,
  1280. "_useGrayscale": false,
  1281. "_atlas": null,
  1282. "_id": "adxVY5b25OUYmbEwg4Vcxs"
  1283. },
  1284. {
  1285. "__type__": "cc.CircleCollider2D",
  1286. "_name": "",
  1287. "_objFlags": 0,
  1288. "__editorExtras__": {},
  1289. "node": {
  1290. "__id__": 33
  1291. },
  1292. "_enabled": true,
  1293. "__prefab": null,
  1294. "tag": 0,
  1295. "_group": 1,
  1296. "_density": 0.1,
  1297. "_sensor": false,
  1298. "_friction": 0.2,
  1299. "_restitution": 0.1,
  1300. "_offset": {
  1301. "__type__": "cc.Vec2",
  1302. "x": 0,
  1303. "y": 0
  1304. },
  1305. "_radius": 7.1,
  1306. "_id": "08YGiRroxMF4xxfOEGYUeX"
  1307. },
  1308. {
  1309. "__type__": "cc.HingeJoint2D",
  1310. "_name": "",
  1311. "_objFlags": 0,
  1312. "__editorExtras__": {},
  1313. "node": {
  1314. "__id__": 33
  1315. },
  1316. "_enabled": true,
  1317. "__prefab": null,
  1318. "anchor": {
  1319. "__type__": "cc.Vec2",
  1320. "x": 81.9,
  1321. "y": 4.2
  1322. },
  1323. "connectedAnchor": {
  1324. "__type__": "cc.Vec2",
  1325. "x": 0.3,
  1326. "y": 3.7
  1327. },
  1328. "collideConnected": false,
  1329. "connectedBody": {
  1330. "__id__": 39
  1331. },
  1332. "_enableLimit": false,
  1333. "_lowerAngle": 0,
  1334. "_upperAngle": 0,
  1335. "_enableMotor": false,
  1336. "_maxMotorTorque": 1000,
  1337. "_motorSpeed": 0,
  1338. "_id": "b4walx7n1LgJFZzyEoZM+c"
  1339. },
  1340. {
  1341. "__type__": "cc.RigidBody2D",
  1342. "_name": "",
  1343. "_objFlags": 0,
  1344. "__editorExtras__": {},
  1345. "node": {
  1346. "__id__": 40
  1347. },
  1348. "_enabled": true,
  1349. "__prefab": null,
  1350. "enabledContactListener": false,
  1351. "bullet": false,
  1352. "awakeOnLoad": true,
  1353. "_group": 1,
  1354. "_type": 2,
  1355. "_allowSleep": true,
  1356. "_gravityScale": 1,
  1357. "_linearDamping": 0,
  1358. "_angularDamping": 0,
  1359. "_linearVelocity": {
  1360. "__type__": "cc.Vec2",
  1361. "x": 0,
  1362. "y": 0
  1363. },
  1364. "_angularVelocity": 0,
  1365. "_fixedRotation": false,
  1366. "_id": "88WKJ0Bv1JMIquvOhnYOKY"
  1367. },
  1368. {
  1369. "__type__": "cc.Node",
  1370. "_name": "gizmo_7",
  1371. "_objFlags": 0,
  1372. "__editorExtras__": {},
  1373. "_parent": {
  1374. "__id__": 14
  1375. },
  1376. "_children": [],
  1377. "_active": true,
  1378. "_components": [
  1379. {
  1380. "__id__": 41
  1381. },
  1382. {
  1383. "__id__": 42
  1384. },
  1385. {
  1386. "__id__": 43
  1387. },
  1388. {
  1389. "__id__": 44
  1390. },
  1391. {
  1392. "__id__": 39
  1393. },
  1394. {
  1395. "__id__": 45
  1396. },
  1397. {
  1398. "__id__": 85
  1399. }
  1400. ],
  1401. "_prefab": null,
  1402. "_lpos": {
  1403. "__type__": "cc.Vec3",
  1404. "x": 133.583,
  1405. "y": 235.506,
  1406. "z": 0
  1407. },
  1408. "_lrot": {
  1409. "__type__": "cc.Quat",
  1410. "x": 0,
  1411. "y": 0,
  1412. "z": 0.3217948069562725,
  1413. "w": -0.9468094328934283
  1414. },
  1415. "_lscale": {
  1416. "__type__": "cc.Vec3",
  1417. "x": 1,
  1418. "y": 1,
  1419. "z": 1
  1420. },
  1421. "_mobility": 0,
  1422. "_layer": 1073741824,
  1423. "_euler": {
  1424. "__type__": "cc.Vec3",
  1425. "x": 0,
  1426. "y": 0,
  1427. "z": 322.4569960364691
  1428. },
  1429. "_id": "8eZPsslPhI3ZV875Ni38Yl"
  1430. },
  1431. {
  1432. "__type__": "cc.UIOpacity",
  1433. "_name": "",
  1434. "_objFlags": 0,
  1435. "__editorExtras__": {},
  1436. "node": {
  1437. "__id__": 40
  1438. },
  1439. "_enabled": true,
  1440. "__prefab": null,
  1441. "_opacity": 255,
  1442. "_id": "64YZ2LH0lECplN18YrKj7t"
  1443. },
  1444. {
  1445. "__type__": "cc.UITransform",
  1446. "_name": "",
  1447. "_objFlags": 0,
  1448. "__editorExtras__": {},
  1449. "node": {
  1450. "__id__": 40
  1451. },
  1452. "_enabled": true,
  1453. "__prefab": null,
  1454. "_contentSize": {
  1455. "__type__": "cc.Size",
  1456. "width": 80,
  1457. "height": 80
  1458. },
  1459. "_anchorPoint": {
  1460. "__type__": "cc.Vec2",
  1461. "x": 0.5,
  1462. "y": 0.5
  1463. },
  1464. "_id": "c1DcP2FR9D0L/fOf1Q8FAK"
  1465. },
  1466. {
  1467. "__type__": "cc.Sprite",
  1468. "_name": "",
  1469. "_objFlags": 0,
  1470. "__editorExtras__": {},
  1471. "node": {
  1472. "__id__": 40
  1473. },
  1474. "_enabled": true,
  1475. "__prefab": null,
  1476. "_customMaterial": null,
  1477. "_srcBlendFactor": 2,
  1478. "_dstBlendFactor": 4,
  1479. "_color": {
  1480. "__type__": "cc.Color",
  1481. "r": 255,
  1482. "g": 156,
  1483. "b": 156,
  1484. "a": 17
  1485. },
  1486. "_spriteFrame": {
  1487. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1488. "__expectedType__": "cc.SpriteFrame"
  1489. },
  1490. "_type": 0,
  1491. "_fillType": 0,
  1492. "_sizeMode": 0,
  1493. "_fillCenter": {
  1494. "__type__": "cc.Vec2",
  1495. "x": 0,
  1496. "y": 0
  1497. },
  1498. "_fillStart": 0,
  1499. "_fillRange": 0,
  1500. "_isTrimmedMode": true,
  1501. "_useGrayscale": false,
  1502. "_atlas": null,
  1503. "_id": "278Y67pZ1C74V6/WkZXsD2"
  1504. },
  1505. {
  1506. "__type__": "cc.CircleCollider2D",
  1507. "_name": "",
  1508. "_objFlags": 0,
  1509. "__editorExtras__": {},
  1510. "node": {
  1511. "__id__": 40
  1512. },
  1513. "_enabled": true,
  1514. "__prefab": null,
  1515. "tag": 0,
  1516. "_group": 1,
  1517. "_density": 0.1,
  1518. "_sensor": false,
  1519. "_friction": 0.2,
  1520. "_restitution": 0.1,
  1521. "_offset": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0,
  1524. "y": 0
  1525. },
  1526. "_radius": 7.1,
  1527. "_id": "e5mfuiUTtNKI0L96FT4Dfp"
  1528. },
  1529. {
  1530. "__type__": "cc.HingeJoint2D",
  1531. "_name": "",
  1532. "_objFlags": 0,
  1533. "__editorExtras__": {},
  1534. "node": {
  1535. "__id__": 40
  1536. },
  1537. "_enabled": true,
  1538. "__prefab": null,
  1539. "anchor": {
  1540. "__type__": "cc.Vec2",
  1541. "x": 82.2,
  1542. "y": -0.2
  1543. },
  1544. "connectedAnchor": {
  1545. "__type__": "cc.Vec2",
  1546. "x": 0,
  1547. "y": 0
  1548. },
  1549. "collideConnected": false,
  1550. "connectedBody": {
  1551. "__id__": 46
  1552. },
  1553. "_enableLimit": false,
  1554. "_lowerAngle": 0,
  1555. "_upperAngle": 0,
  1556. "_enableMotor": false,
  1557. "_maxMotorTorque": 1000,
  1558. "_motorSpeed": 0,
  1559. "_id": "b14nz2wY5OVbYHXHgmmQXA"
  1560. },
  1561. {
  1562. "__type__": "cc.RigidBody2D",
  1563. "_name": "",
  1564. "_objFlags": 0,
  1565. "__editorExtras__": {},
  1566. "node": {
  1567. "__id__": 47
  1568. },
  1569. "_enabled": true,
  1570. "__prefab": null,
  1571. "enabledContactListener": false,
  1572. "bullet": false,
  1573. "awakeOnLoad": true,
  1574. "_group": 1,
  1575. "_type": 2,
  1576. "_allowSleep": true,
  1577. "_gravityScale": 1,
  1578. "_linearDamping": 0,
  1579. "_angularDamping": 0,
  1580. "_linearVelocity": {
  1581. "__type__": "cc.Vec2",
  1582. "x": 0,
  1583. "y": 0
  1584. },
  1585. "_angularVelocity": 0,
  1586. "_fixedRotation": false,
  1587. "_id": "4dcc0M5VtCz7kzBAzGUUfk"
  1588. },
  1589. {
  1590. "__type__": "cc.Node",
  1591. "_name": "gizmo_8",
  1592. "_objFlags": 0,
  1593. "__editorExtras__": {},
  1594. "_parent": {
  1595. "__id__": 14
  1596. },
  1597. "_children": [],
  1598. "_active": true,
  1599. "_components": [
  1600. {
  1601. "__id__": 48
  1602. },
  1603. {
  1604. "__id__": 49
  1605. },
  1606. {
  1607. "__id__": 50
  1608. },
  1609. {
  1610. "__id__": 51
  1611. },
  1612. {
  1613. "__id__": 46
  1614. },
  1615. {
  1616. "__id__": 52
  1617. },
  1618. {
  1619. "__id__": 84
  1620. }
  1621. ],
  1622. "_prefab": null,
  1623. "_lpos": {
  1624. "__type__": "cc.Vec3",
  1625. "x": 198.47850000000017,
  1626. "y": 185.6325,
  1627. "z": 0
  1628. },
  1629. "_lrot": {
  1630. "__type__": "cc.Quat",
  1631. "x": 0,
  1632. "y": 0,
  1633. "z": 0.33126462591912886,
  1634. "w": -0.9435378888071531
  1635. },
  1636. "_lscale": {
  1637. "__type__": "cc.Vec3",
  1638. "x": 1,
  1639. "y": 1,
  1640. "z": 1
  1641. },
  1642. "_mobility": 0,
  1643. "_layer": 1073741824,
  1644. "_euler": {
  1645. "__type__": "cc.Vec3",
  1646. "x": 0,
  1647. "y": 0,
  1648. "z": 321.30889777041625
  1649. },
  1650. "_id": "e2EItg4U9NWK2m+I4/Jaz+"
  1651. },
  1652. {
  1653. "__type__": "cc.UIOpacity",
  1654. "_name": "",
  1655. "_objFlags": 0,
  1656. "__editorExtras__": {},
  1657. "node": {
  1658. "__id__": 47
  1659. },
  1660. "_enabled": true,
  1661. "__prefab": null,
  1662. "_opacity": 255,
  1663. "_id": "e3zGWM2SZK1rgb1jLl/+9e"
  1664. },
  1665. {
  1666. "__type__": "cc.UITransform",
  1667. "_name": "",
  1668. "_objFlags": 0,
  1669. "__editorExtras__": {},
  1670. "node": {
  1671. "__id__": 47
  1672. },
  1673. "_enabled": true,
  1674. "__prefab": null,
  1675. "_contentSize": {
  1676. "__type__": "cc.Size",
  1677. "width": 80,
  1678. "height": 80
  1679. },
  1680. "_anchorPoint": {
  1681. "__type__": "cc.Vec2",
  1682. "x": 0.5,
  1683. "y": 0.5
  1684. },
  1685. "_id": "7dAKlelY9B5rkjyparBqTq"
  1686. },
  1687. {
  1688. "__type__": "cc.Sprite",
  1689. "_name": "",
  1690. "_objFlags": 0,
  1691. "__editorExtras__": {},
  1692. "node": {
  1693. "__id__": 47
  1694. },
  1695. "_enabled": true,
  1696. "__prefab": null,
  1697. "_customMaterial": null,
  1698. "_srcBlendFactor": 2,
  1699. "_dstBlendFactor": 4,
  1700. "_color": {
  1701. "__type__": "cc.Color",
  1702. "r": 255,
  1703. "g": 156,
  1704. "b": 156,
  1705. "a": 17
  1706. },
  1707. "_spriteFrame": {
  1708. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1709. "__expectedType__": "cc.SpriteFrame"
  1710. },
  1711. "_type": 0,
  1712. "_fillType": 0,
  1713. "_sizeMode": 0,
  1714. "_fillCenter": {
  1715. "__type__": "cc.Vec2",
  1716. "x": 0,
  1717. "y": 0
  1718. },
  1719. "_fillStart": 0,
  1720. "_fillRange": 0,
  1721. "_isTrimmedMode": true,
  1722. "_useGrayscale": false,
  1723. "_atlas": null,
  1724. "_id": "f3Qyc63cpHAbC1yhsnldbQ"
  1725. },
  1726. {
  1727. "__type__": "cc.CircleCollider2D",
  1728. "_name": "",
  1729. "_objFlags": 0,
  1730. "__editorExtras__": {},
  1731. "node": {
  1732. "__id__": 47
  1733. },
  1734. "_enabled": true,
  1735. "__prefab": null,
  1736. "tag": 0,
  1737. "_group": 1,
  1738. "_density": 0.1,
  1739. "_sensor": false,
  1740. "_friction": 0.2,
  1741. "_restitution": 0.1,
  1742. "_offset": {
  1743. "__type__": "cc.Vec2",
  1744. "x": 0,
  1745. "y": 0
  1746. },
  1747. "_radius": 7.1,
  1748. "_id": "34wtpbNo1Na5vuJn8AhplB"
  1749. },
  1750. {
  1751. "__type__": "cc.HingeJoint2D",
  1752. "_name": "",
  1753. "_objFlags": 0,
  1754. "__editorExtras__": {},
  1755. "node": {
  1756. "__id__": 47
  1757. },
  1758. "_enabled": true,
  1759. "__prefab": null,
  1760. "anchor": {
  1761. "__type__": "cc.Vec2",
  1762. "x": 81.9,
  1763. "y": -0.6
  1764. },
  1765. "connectedAnchor": {
  1766. "__type__": "cc.Vec2",
  1767. "x": 0,
  1768. "y": 0
  1769. },
  1770. "collideConnected": false,
  1771. "connectedBody": {
  1772. "__id__": 53
  1773. },
  1774. "_enableLimit": false,
  1775. "_lowerAngle": 0,
  1776. "_upperAngle": 0,
  1777. "_enableMotor": false,
  1778. "_maxMotorTorque": 1000,
  1779. "_motorSpeed": 0,
  1780. "_id": "04lGF3mD9MLYvgaDFO1DG4"
  1781. },
  1782. {
  1783. "__type__": "cc.RigidBody2D",
  1784. "_name": "",
  1785. "_objFlags": 0,
  1786. "__editorExtras__": {},
  1787. "node": {
  1788. "__id__": 54
  1789. },
  1790. "_enabled": true,
  1791. "__prefab": null,
  1792. "enabledContactListener": false,
  1793. "bullet": false,
  1794. "awakeOnLoad": true,
  1795. "_group": 1,
  1796. "_type": 2,
  1797. "_allowSleep": true,
  1798. "_gravityScale": 1,
  1799. "_linearDamping": 0,
  1800. "_angularDamping": 0,
  1801. "_linearVelocity": {
  1802. "__type__": "cc.Vec2",
  1803. "x": 0,
  1804. "y": 0
  1805. },
  1806. "_angularVelocity": 0,
  1807. "_fixedRotation": false,
  1808. "_id": "80HMXLkMtAhJkSFVzzuGJd"
  1809. },
  1810. {
  1811. "__type__": "cc.Node",
  1812. "_name": "gizmo_9",
  1813. "_objFlags": 0,
  1814. "__editorExtras__": {},
  1815. "_parent": {
  1816. "__id__": 14
  1817. },
  1818. "_children": [],
  1819. "_active": true,
  1820. "_components": [
  1821. {
  1822. "__id__": 55
  1823. },
  1824. {
  1825. "__id__": 56
  1826. },
  1827. {
  1828. "__id__": 57
  1829. },
  1830. {
  1831. "__id__": 58
  1832. },
  1833. {
  1834. "__id__": 53
  1835. },
  1836. {
  1837. "__id__": 59
  1838. },
  1839. {
  1840. "__id__": 83
  1841. }
  1842. ],
  1843. "_prefab": null,
  1844. "_lpos": {
  1845. "__type__": "cc.Vec3",
  1846. "x": 262.42,
  1847. "y": 134.422,
  1848. "z": 0
  1849. },
  1850. "_lrot": {
  1851. "__type__": "cc.Quat",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0.3018371793979931,
  1855. "w": -0.9533594899790234
  1856. },
  1857. "_lscale": {
  1858. "__type__": "cc.Vec3",
  1859. "x": 1,
  1860. "y": 1,
  1861. "z": 1
  1862. },
  1863. "_mobility": 0,
  1864. "_layer": 1073741824,
  1865. "_euler": {
  1866. "__type__": "cc.Vec3",
  1867. "x": 0,
  1868. "y": 0,
  1869. "z": 324.86403631454533
  1870. },
  1871. "_id": "52AEiUGqpJ3LeQ3UDsgymR"
  1872. },
  1873. {
  1874. "__type__": "cc.UIOpacity",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "__editorExtras__": {},
  1878. "node": {
  1879. "__id__": 54
  1880. },
  1881. "_enabled": true,
  1882. "__prefab": null,
  1883. "_opacity": 255,
  1884. "_id": "753j5ZTYFAL5p+wX+N/p0r"
  1885. },
  1886. {
  1887. "__type__": "cc.UITransform",
  1888. "_name": "",
  1889. "_objFlags": 0,
  1890. "__editorExtras__": {},
  1891. "node": {
  1892. "__id__": 54
  1893. },
  1894. "_enabled": true,
  1895. "__prefab": null,
  1896. "_contentSize": {
  1897. "__type__": "cc.Size",
  1898. "width": 80,
  1899. "height": 80
  1900. },
  1901. "_anchorPoint": {
  1902. "__type__": "cc.Vec2",
  1903. "x": 0.5,
  1904. "y": 0.5
  1905. },
  1906. "_id": "dcYk2DMX9BVZ0SZBZmfBWG"
  1907. },
  1908. {
  1909. "__type__": "cc.Sprite",
  1910. "_name": "",
  1911. "_objFlags": 0,
  1912. "__editorExtras__": {},
  1913. "node": {
  1914. "__id__": 54
  1915. },
  1916. "_enabled": true,
  1917. "__prefab": null,
  1918. "_customMaterial": null,
  1919. "_srcBlendFactor": 2,
  1920. "_dstBlendFactor": 4,
  1921. "_color": {
  1922. "__type__": "cc.Color",
  1923. "r": 255,
  1924. "g": 156,
  1925. "b": 156,
  1926. "a": 17
  1927. },
  1928. "_spriteFrame": {
  1929. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1930. "__expectedType__": "cc.SpriteFrame"
  1931. },
  1932. "_type": 0,
  1933. "_fillType": 0,
  1934. "_sizeMode": 0,
  1935. "_fillCenter": {
  1936. "__type__": "cc.Vec2",
  1937. "x": 0,
  1938. "y": 0
  1939. },
  1940. "_fillStart": 0,
  1941. "_fillRange": 0,
  1942. "_isTrimmedMode": true,
  1943. "_useGrayscale": false,
  1944. "_atlas": null,
  1945. "_id": "cb7mjO9glKbZbOz2KVrY3E"
  1946. },
  1947. {
  1948. "__type__": "cc.CircleCollider2D",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "__editorExtras__": {},
  1952. "node": {
  1953. "__id__": 54
  1954. },
  1955. "_enabled": true,
  1956. "__prefab": null,
  1957. "tag": 0,
  1958. "_group": 1,
  1959. "_density": 0.1,
  1960. "_sensor": false,
  1961. "_friction": 0.2,
  1962. "_restitution": 0.1,
  1963. "_offset": {
  1964. "__type__": "cc.Vec2",
  1965. "x": 0,
  1966. "y": 0
  1967. },
  1968. "_radius": 7.1,
  1969. "_id": "ccBUQUSKNFepiZHKBjsE0W"
  1970. },
  1971. {
  1972. "__type__": "cc.HingeJoint2D",
  1973. "_name": "",
  1974. "_objFlags": 0,
  1975. "__editorExtras__": {},
  1976. "node": {
  1977. "__id__": 54
  1978. },
  1979. "_enabled": true,
  1980. "__prefab": null,
  1981. "anchor": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 81.8,
  1984. "y": -0.1
  1985. },
  1986. "connectedAnchor": {
  1987. "__type__": "cc.Vec2",
  1988. "x": 0,
  1989. "y": 0
  1990. },
  1991. "collideConnected": false,
  1992. "connectedBody": {
  1993. "__id__": 60
  1994. },
  1995. "_enableLimit": false,
  1996. "_lowerAngle": 0,
  1997. "_upperAngle": 0,
  1998. "_enableMotor": false,
  1999. "_maxMotorTorque": 1000,
  2000. "_motorSpeed": 0,
  2001. "_id": "47UqS8TsdCFoi0zEWu8uJP"
  2002. },
  2003. {
  2004. "__type__": "cc.RigidBody2D",
  2005. "_name": "",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "node": {
  2009. "__id__": 61
  2010. },
  2011. "_enabled": true,
  2012. "__prefab": null,
  2013. "enabledContactListener": false,
  2014. "bullet": false,
  2015. "awakeOnLoad": true,
  2016. "_group": 1,
  2017. "_type": 2,
  2018. "_allowSleep": true,
  2019. "_gravityScale": 1,
  2020. "_linearDamping": 0,
  2021. "_angularDamping": 0,
  2022. "_linearVelocity": {
  2023. "__type__": "cc.Vec2",
  2024. "x": 0,
  2025. "y": 0
  2026. },
  2027. "_angularVelocity": 0,
  2028. "_fixedRotation": false,
  2029. "_id": "f5Ejh1+eNG8KzU0Yn0pNs8"
  2030. },
  2031. {
  2032. "__type__": "cc.Node",
  2033. "_name": "gizmo_10",
  2034. "_objFlags": 0,
  2035. "__editorExtras__": {},
  2036. "_parent": {
  2037. "__id__": 14
  2038. },
  2039. "_children": [],
  2040. "_active": true,
  2041. "_components": [
  2042. {
  2043. "__id__": 62
  2044. },
  2045. {
  2046. "__id__": 63
  2047. },
  2048. {
  2049. "__id__": 64
  2050. },
  2051. {
  2052. "__id__": 65
  2053. },
  2054. {
  2055. "__id__": 60
  2056. },
  2057. {
  2058. "__id__": 66
  2059. },
  2060. {
  2061. "__id__": 82
  2062. }
  2063. ],
  2064. "_prefab": null,
  2065. "_lpos": {
  2066. "__type__": "cc.Vec3",
  2067. "x": 329.34825,
  2068. "y": 87.3212499999999,
  2069. "z": 0
  2070. },
  2071. "_lrot": {
  2072. "__type__": "cc.Quat",
  2073. "x": 0,
  2074. "y": 0,
  2075. "z": 0.31659621471679167,
  2076. "w": -0.9485604023081499
  2077. },
  2078. "_lscale": {
  2079. "__type__": "cc.Vec3",
  2080. "x": 1,
  2081. "y": 1,
  2082. "z": 1
  2083. },
  2084. "_mobility": 0,
  2085. "_layer": 1073741824,
  2086. "_euler": {
  2087. "__type__": "cc.Vec3",
  2088. "x": 0,
  2089. "y": 0,
  2090. "z": 323.085594513218
  2091. },
  2092. "_id": "24ThzEk+lBopb4rvRYhqsy"
  2093. },
  2094. {
  2095. "__type__": "cc.UIOpacity",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "__editorExtras__": {},
  2099. "node": {
  2100. "__id__": 61
  2101. },
  2102. "_enabled": true,
  2103. "__prefab": null,
  2104. "_opacity": 255,
  2105. "_id": "18H61VurpN576juukbsOGD"
  2106. },
  2107. {
  2108. "__type__": "cc.UITransform",
  2109. "_name": "",
  2110. "_objFlags": 0,
  2111. "__editorExtras__": {},
  2112. "node": {
  2113. "__id__": 61
  2114. },
  2115. "_enabled": true,
  2116. "__prefab": null,
  2117. "_contentSize": {
  2118. "__type__": "cc.Size",
  2119. "width": 80,
  2120. "height": 80
  2121. },
  2122. "_anchorPoint": {
  2123. "__type__": "cc.Vec2",
  2124. "x": 0.5,
  2125. "y": 0.5
  2126. },
  2127. "_id": "a9FTk0YeZKaZJNuvKCwGEx"
  2128. },
  2129. {
  2130. "__type__": "cc.Sprite",
  2131. "_name": "",
  2132. "_objFlags": 0,
  2133. "__editorExtras__": {},
  2134. "node": {
  2135. "__id__": 61
  2136. },
  2137. "_enabled": true,
  2138. "__prefab": null,
  2139. "_customMaterial": null,
  2140. "_srcBlendFactor": 2,
  2141. "_dstBlendFactor": 4,
  2142. "_color": {
  2143. "__type__": "cc.Color",
  2144. "r": 255,
  2145. "g": 156,
  2146. "b": 156,
  2147. "a": 17
  2148. },
  2149. "_spriteFrame": {
  2150. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  2151. "__expectedType__": "cc.SpriteFrame"
  2152. },
  2153. "_type": 0,
  2154. "_fillType": 0,
  2155. "_sizeMode": 0,
  2156. "_fillCenter": {
  2157. "__type__": "cc.Vec2",
  2158. "x": 0,
  2159. "y": 0
  2160. },
  2161. "_fillStart": 0,
  2162. "_fillRange": 0,
  2163. "_isTrimmedMode": true,
  2164. "_useGrayscale": false,
  2165. "_atlas": null,
  2166. "_id": "92TXYbiC9EkIp6vubUYbPb"
  2167. },
  2168. {
  2169. "__type__": "cc.CircleCollider2D",
  2170. "_name": "",
  2171. "_objFlags": 0,
  2172. "__editorExtras__": {},
  2173. "node": {
  2174. "__id__": 61
  2175. },
  2176. "_enabled": true,
  2177. "__prefab": null,
  2178. "tag": 0,
  2179. "_group": 1,
  2180. "_density": 0.1,
  2181. "_sensor": false,
  2182. "_friction": 0.2,
  2183. "_restitution": 0.1,
  2184. "_offset": {
  2185. "__type__": "cc.Vec2",
  2186. "x": 0,
  2187. "y": 0
  2188. },
  2189. "_radius": 7.1,
  2190. "_id": "d7mS6MicRJd7k0ALJdB5QZ"
  2191. },
  2192. {
  2193. "__type__": "cc.HingeJoint2D",
  2194. "_name": "",
  2195. "_objFlags": 0,
  2196. "__editorExtras__": {},
  2197. "node": {
  2198. "__id__": 61
  2199. },
  2200. "_enabled": true,
  2201. "__prefab": null,
  2202. "anchor": {
  2203. "__type__": "cc.Vec2",
  2204. "x": 82.1,
  2205. "y": -0.2
  2206. },
  2207. "connectedAnchor": {
  2208. "__type__": "cc.Vec2",
  2209. "x": 0,
  2210. "y": 0
  2211. },
  2212. "collideConnected": false,
  2213. "connectedBody": {
  2214. "__id__": 67
  2215. },
  2216. "_enableLimit": false,
  2217. "_lowerAngle": 0,
  2218. "_upperAngle": 0,
  2219. "_enableMotor": false,
  2220. "_maxMotorTorque": 1000,
  2221. "_motorSpeed": 0,
  2222. "_id": "eeQJAe0ZpLoaVM6MpLcgE2"
  2223. },
  2224. {
  2225. "__type__": "cc.RigidBody2D",
  2226. "_name": "",
  2227. "_objFlags": 0,
  2228. "__editorExtras__": {},
  2229. "node": {
  2230. "__id__": 68
  2231. },
  2232. "_enabled": true,
  2233. "__prefab": null,
  2234. "enabledContactListener": false,
  2235. "bullet": false,
  2236. "awakeOnLoad": true,
  2237. "_group": 1,
  2238. "_type": 2,
  2239. "_allowSleep": true,
  2240. "_gravityScale": 1,
  2241. "_linearDamping": 0,
  2242. "_angularDamping": 0,
  2243. "_linearVelocity": {
  2244. "__type__": "cc.Vec2",
  2245. "x": 0,
  2246. "y": 0
  2247. },
  2248. "_angularVelocity": 0,
  2249. "_fixedRotation": false,
  2250. "_id": "f83x+SSwNAXp0lW3aprn6f"
  2251. },
  2252. {
  2253. "__type__": "cc.Node",
  2254. "_name": "gizmo_11",
  2255. "_objFlags": 0,
  2256. "__editorExtras__": {},
  2257. "_parent": {
  2258. "__id__": 14
  2259. },
  2260. "_children": [],
  2261. "_active": true,
  2262. "_components": [
  2263. {
  2264. "__id__": 69
  2265. },
  2266. {
  2267. "__id__": 70
  2268. },
  2269. {
  2270. "__id__": 71
  2271. },
  2272. {
  2273. "__id__": 72
  2274. },
  2275. {
  2276. "__id__": 67
  2277. },
  2278. {
  2279. "__id__": 73
  2280. },
  2281. {
  2282. "__id__": 81
  2283. }
  2284. ],
  2285. "_prefab": null,
  2286. "_lpos": {
  2287. "__type__": "cc.Vec3",
  2288. "x": 394.7831249999999,
  2289. "y": 38.16562499999998,
  2290. "z": 0
  2291. },
  2292. "_lrot": {
  2293. "__type__": "cc.Quat",
  2294. "x": 0,
  2295. "y": 0,
  2296. "z": 0.3215536615769316,
  2297. "w": -0.9468913574040414
  2298. },
  2299. "_lscale": {
  2300. "__type__": "cc.Vec3",
  2301. "x": 1,
  2302. "y": 1,
  2303. "z": 1
  2304. },
  2305. "_mobility": 0,
  2306. "_layer": 1073741824,
  2307. "_euler": {
  2308. "__type__": "cc.Vec3",
  2309. "x": 0,
  2310. "y": 0,
  2311. "z": 322.4861803986057
  2312. },
  2313. "_id": "1brMO5cwZHe51Bl/u/Q4Kr"
  2314. },
  2315. {
  2316. "__type__": "cc.UIOpacity",
  2317. "_name": "",
  2318. "_objFlags": 0,
  2319. "__editorExtras__": {},
  2320. "node": {
  2321. "__id__": 68
  2322. },
  2323. "_enabled": true,
  2324. "__prefab": null,
  2325. "_opacity": 255,
  2326. "_id": "41oBC3i/tEHrQPalYxz7iW"
  2327. },
  2328. {
  2329. "__type__": "cc.UITransform",
  2330. "_name": "",
  2331. "_objFlags": 0,
  2332. "__editorExtras__": {},
  2333. "node": {
  2334. "__id__": 68
  2335. },
  2336. "_enabled": true,
  2337. "__prefab": null,
  2338. "_contentSize": {
  2339. "__type__": "cc.Size",
  2340. "width": 80,
  2341. "height": 80
  2342. },
  2343. "_anchorPoint": {
  2344. "__type__": "cc.Vec2",
  2345. "x": 0.5,
  2346. "y": 0.5
  2347. },
  2348. "_id": "45NuRZ3wJEDZSmtaRqfEim"
  2349. },
  2350. {
  2351. "__type__": "cc.Sprite",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "__editorExtras__": {},
  2355. "node": {
  2356. "__id__": 68
  2357. },
  2358. "_enabled": true,
  2359. "__prefab": null,
  2360. "_customMaterial": null,
  2361. "_srcBlendFactor": 2,
  2362. "_dstBlendFactor": 4,
  2363. "_color": {
  2364. "__type__": "cc.Color",
  2365. "r": 255,
  2366. "g": 156,
  2367. "b": 156,
  2368. "a": 17
  2369. },
  2370. "_spriteFrame": {
  2371. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  2372. "__expectedType__": "cc.SpriteFrame"
  2373. },
  2374. "_type": 0,
  2375. "_fillType": 0,
  2376. "_sizeMode": 0,
  2377. "_fillCenter": {
  2378. "__type__": "cc.Vec2",
  2379. "x": 0,
  2380. "y": 0
  2381. },
  2382. "_fillStart": 0,
  2383. "_fillRange": 0,
  2384. "_isTrimmedMode": true,
  2385. "_useGrayscale": false,
  2386. "_atlas": null,
  2387. "_id": "c2fKTueRlJVbLXb17a8BoC"
  2388. },
  2389. {
  2390. "__type__": "cc.CircleCollider2D",
  2391. "_name": "",
  2392. "_objFlags": 0,
  2393. "__editorExtras__": {},
  2394. "node": {
  2395. "__id__": 68
  2396. },
  2397. "_enabled": true,
  2398. "__prefab": null,
  2399. "tag": 0,
  2400. "_group": 1,
  2401. "_density": 0.1,
  2402. "_sensor": false,
  2403. "_friction": 0.2,
  2404. "_restitution": 0.1,
  2405. "_offset": {
  2406. "__type__": "cc.Vec2",
  2407. "x": 0,
  2408. "y": 0
  2409. },
  2410. "_radius": 7.1,
  2411. "_id": "a6MRhnvuhNEoq7SgMJhzz9"
  2412. },
  2413. {
  2414. "__type__": "cc.HingeJoint2D",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "__editorExtras__": {},
  2418. "node": {
  2419. "__id__": 68
  2420. },
  2421. "_enabled": true,
  2422. "__prefab": null,
  2423. "anchor": {
  2424. "__type__": "cc.Vec2",
  2425. "x": 80.6,
  2426. "y": 0.4
  2427. },
  2428. "connectedAnchor": {
  2429. "__type__": "cc.Vec2",
  2430. "x": 0,
  2431. "y": 0
  2432. },
  2433. "collideConnected": false,
  2434. "connectedBody": {
  2435. "__id__": 74
  2436. },
  2437. "_enableLimit": false,
  2438. "_lowerAngle": 0,
  2439. "_upperAngle": 0,
  2440. "_enableMotor": false,
  2441. "_maxMotorTorque": 1000,
  2442. "_motorSpeed": 0,
  2443. "_id": "199CKnqgFECJU4XeeK5lky"
  2444. },
  2445. {
  2446. "__type__": "cc.RigidBody2D",
  2447. "_name": "",
  2448. "_objFlags": 0,
  2449. "__editorExtras__": {},
  2450. "node": {
  2451. "__id__": 75
  2452. },
  2453. "_enabled": true,
  2454. "__prefab": null,
  2455. "enabledContactListener": false,
  2456. "bullet": false,
  2457. "awakeOnLoad": true,
  2458. "_group": 1,
  2459. "_type": 2,
  2460. "_allowSleep": true,
  2461. "_gravityScale": 1,
  2462. "_linearDamping": 0,
  2463. "_angularDamping": 0,
  2464. "_linearVelocity": {
  2465. "__type__": "cc.Vec2",
  2466. "x": 0,
  2467. "y": 0
  2468. },
  2469. "_angularVelocity": 0,
  2470. "_fixedRotation": false,
  2471. "_id": "5bHhsPHQ1B5657Zig7d2KH"
  2472. },
  2473. {
  2474. "__type__": "cc.Node",
  2475. "_name": "gizmo_4",
  2476. "_objFlags": 0,
  2477. "__editorExtras__": {},
  2478. "_parent": {
  2479. "__id__": 14
  2480. },
  2481. "_children": [],
  2482. "_active": true,
  2483. "_components": [
  2484. {
  2485. "__id__": 76
  2486. },
  2487. {
  2488. "__id__": 77
  2489. },
  2490. {
  2491. "__id__": 78
  2492. },
  2493. {
  2494. "__id__": 79
  2495. },
  2496. {
  2497. "__id__": 74
  2498. },
  2499. {
  2500. "__id__": 80
  2501. }
  2502. ],
  2503. "_prefab": null,
  2504. "_lpos": {
  2505. "__type__": "cc.Vec3",
  2506. "x": 458.812,
  2507. "y": -10.99,
  2508. "z": 0
  2509. },
  2510. "_lrot": {
  2511. "__type__": "cc.Quat",
  2512. "x": 0,
  2513. "y": 0,
  2514. "z": 0,
  2515. "w": 1
  2516. },
  2517. "_lscale": {
  2518. "__type__": "cc.Vec3",
  2519. "x": 1,
  2520. "y": 1,
  2521. "z": 1
  2522. },
  2523. "_mobility": 0,
  2524. "_layer": 1073741824,
  2525. "_euler": {
  2526. "__type__": "cc.Vec3",
  2527. "x": 0,
  2528. "y": 0,
  2529. "z": 0
  2530. },
  2531. "_id": "c7irkPr/pPC4UR+DZMwclY"
  2532. },
  2533. {
  2534. "__type__": "cc.UIOpacity",
  2535. "_name": "",
  2536. "_objFlags": 0,
  2537. "__editorExtras__": {},
  2538. "node": {
  2539. "__id__": 75
  2540. },
  2541. "_enabled": true,
  2542. "__prefab": null,
  2543. "_opacity": 255,
  2544. "_id": "b4D3f4dK9MoryBfwFsMD1E"
  2545. },
  2546. {
  2547. "__type__": "cc.UITransform",
  2548. "_name": "",
  2549. "_objFlags": 0,
  2550. "__editorExtras__": {},
  2551. "node": {
  2552. "__id__": 75
  2553. },
  2554. "_enabled": true,
  2555. "__prefab": null,
  2556. "_contentSize": {
  2557. "__type__": "cc.Size",
  2558. "width": 80,
  2559. "height": 80
  2560. },
  2561. "_anchorPoint": {
  2562. "__type__": "cc.Vec2",
  2563. "x": 0.5,
  2564. "y": 0.5
  2565. },
  2566. "_id": "3aULV0/QlB3brOxEv/jIW2"
  2567. },
  2568. {
  2569. "__type__": "cc.Sprite",
  2570. "_name": "",
  2571. "_objFlags": 0,
  2572. "__editorExtras__": {},
  2573. "node": {
  2574. "__id__": 75
  2575. },
  2576. "_enabled": true,
  2577. "__prefab": null,
  2578. "_customMaterial": null,
  2579. "_srcBlendFactor": 2,
  2580. "_dstBlendFactor": 4,
  2581. "_color": {
  2582. "__type__": "cc.Color",
  2583. "r": 255,
  2584. "g": 156,
  2585. "b": 156,
  2586. "a": 17
  2587. },
  2588. "_spriteFrame": {
  2589. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  2590. "__expectedType__": "cc.SpriteFrame"
  2591. },
  2592. "_type": 0,
  2593. "_fillType": 0,
  2594. "_sizeMode": 0,
  2595. "_fillCenter": {
  2596. "__type__": "cc.Vec2",
  2597. "x": 0,
  2598. "y": 0
  2599. },
  2600. "_fillStart": 0,
  2601. "_fillRange": 0,
  2602. "_isTrimmedMode": true,
  2603. "_useGrayscale": false,
  2604. "_atlas": null,
  2605. "_id": "86jQG+2lxO6LMsYjHd92bd"
  2606. },
  2607. {
  2608. "__type__": "cc.CircleCollider2D",
  2609. "_name": "",
  2610. "_objFlags": 0,
  2611. "__editorExtras__": {},
  2612. "node": {
  2613. "__id__": 75
  2614. },
  2615. "_enabled": true,
  2616. "__prefab": null,
  2617. "tag": 0,
  2618. "_group": 1,
  2619. "_density": 0.1,
  2620. "_sensor": false,
  2621. "_friction": 0.2,
  2622. "_restitution": 0.1,
  2623. "_offset": {
  2624. "__type__": "cc.Vec2",
  2625. "x": 0,
  2626. "y": 0
  2627. },
  2628. "_radius": 7.1,
  2629. "_id": "782uw3fzdEerKYGQssa2L7"
  2630. },
  2631. {
  2632. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2633. "_name": "",
  2634. "_objFlags": 0,
  2635. "__editorExtras__": {},
  2636. "node": {
  2637. "__id__": 75
  2638. },
  2639. "_enabled": true,
  2640. "__prefab": null,
  2641. "_id": "b7Bu5I/sFJ5Zub+3bTcjHZ"
  2642. },
  2643. {
  2644. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2645. "_name": "",
  2646. "_objFlags": 0,
  2647. "__editorExtras__": {},
  2648. "node": {
  2649. "__id__": 68
  2650. },
  2651. "_enabled": true,
  2652. "__prefab": null,
  2653. "_id": "28SbD7eARBH4T003pm8wbO"
  2654. },
  2655. {
  2656. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2657. "_name": "",
  2658. "_objFlags": 0,
  2659. "__editorExtras__": {},
  2660. "node": {
  2661. "__id__": 61
  2662. },
  2663. "_enabled": true,
  2664. "__prefab": null,
  2665. "_id": "dadbPNr15KCqLBhCElcn9t"
  2666. },
  2667. {
  2668. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2669. "_name": "",
  2670. "_objFlags": 0,
  2671. "__editorExtras__": {},
  2672. "node": {
  2673. "__id__": 54
  2674. },
  2675. "_enabled": true,
  2676. "__prefab": null,
  2677. "_id": "43qZm9R21Mi6XZB9VJNJzF"
  2678. },
  2679. {
  2680. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2681. "_name": "",
  2682. "_objFlags": 0,
  2683. "__editorExtras__": {},
  2684. "node": {
  2685. "__id__": 47
  2686. },
  2687. "_enabled": true,
  2688. "__prefab": null,
  2689. "_id": "8cyc4zpw9HbbmMXs4DJhIi"
  2690. },
  2691. {
  2692. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2693. "_name": "",
  2694. "_objFlags": 0,
  2695. "__editorExtras__": {},
  2696. "node": {
  2697. "__id__": 40
  2698. },
  2699. "_enabled": true,
  2700. "__prefab": null,
  2701. "_id": "0cx0p7LUBMrLC+P/clSQA/"
  2702. },
  2703. {
  2704. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2705. "_name": "",
  2706. "_objFlags": 0,
  2707. "__editorExtras__": {},
  2708. "node": {
  2709. "__id__": 33
  2710. },
  2711. "_enabled": true,
  2712. "__prefab": null,
  2713. "_id": "e6Nx8TFL5GUai5RMVwR856"
  2714. },
  2715. {
  2716. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2717. "_name": "",
  2718. "_objFlags": 0,
  2719. "__editorExtras__": {},
  2720. "node": {
  2721. "__id__": 25
  2722. },
  2723. "_enabled": true,
  2724. "__prefab": null,
  2725. "_id": "46rGGnuqJA+LPNgtvV/SSM"
  2726. },
  2727. {
  2728. "__type__": "cc.UITransform",
  2729. "_name": "",
  2730. "_objFlags": 0,
  2731. "__editorExtras__": {},
  2732. "node": {
  2733. "__id__": 14
  2734. },
  2735. "_enabled": true,
  2736. "__prefab": null,
  2737. "_contentSize": {
  2738. "__type__": "cc.Size",
  2739. "width": 100,
  2740. "height": 100
  2741. },
  2742. "_anchorPoint": {
  2743. "__type__": "cc.Vec2",
  2744. "x": 0.5,
  2745. "y": 0.5
  2746. },
  2747. "_id": "69vVm1R7FDfoH5y0xRRyHg"
  2748. },
  2749. {
  2750. "__type__": "cc.MeshRenderer",
  2751. "_name": "",
  2752. "_objFlags": 0,
  2753. "__editorExtras__": {},
  2754. "node": {
  2755. "__id__": 14
  2756. },
  2757. "_enabled": true,
  2758. "__prefab": null,
  2759. "_materials": [
  2760. null
  2761. ],
  2762. "_visFlags": 0,
  2763. "bakeSettings": {
  2764. "__id__": 90
  2765. },
  2766. "_mesh": null,
  2767. "_shadowCastingMode": 0,
  2768. "_shadowReceivingMode": 1,
  2769. "_shadowBias": 0,
  2770. "_shadowNormalBias": 0,
  2771. "_reflectionProbeId": -1,
  2772. "_reflectionProbeBlendId": -1,
  2773. "_reflectionProbeBlendWeight": 0,
  2774. "_enabledGlobalStandardSkinObject": false,
  2775. "_enableMorph": true,
  2776. "_id": "60krKUq4JBd6OyM49LNYcY"
  2777. },
  2778. {
  2779. "__type__": "cc.ModelBakeSettings",
  2780. "texture": null,
  2781. "uvParam": {
  2782. "__type__": "cc.Vec4",
  2783. "x": 0,
  2784. "y": 0,
  2785. "z": 0,
  2786. "w": 0
  2787. },
  2788. "_bakeable": false,
  2789. "_castShadow": false,
  2790. "_receiveShadow": false,
  2791. "_recieveShadow": false,
  2792. "_lightmapSize": 64,
  2793. "_useLightProbe": false,
  2794. "_bakeToLightProbe": true,
  2795. "_reflectionProbeType": 0,
  2796. "_bakeToReflectionProbe": true
  2797. },
  2798. {
  2799. "__type__": "5895dAXMtRB5Y5LDDX4xP8/",
  2800. "_name": "",
  2801. "_objFlags": 0,
  2802. "__editorExtras__": {},
  2803. "node": {
  2804. "__id__": 14
  2805. },
  2806. "_enabled": true,
  2807. "__prefab": null,
  2808. "_syncOnOff": false,
  2809. "_syncTarget": null,
  2810. "_renderMode": 2,
  2811. "_renderUVMode": 1,
  2812. "_spEffectAsset": {
  2813. "__uuid__": "6678422c-a9af-4d38-ab8b-535c51697f2e",
  2814. "__expectedType__": "cc.EffectAsset"
  2815. },
  2816. "_spFrame": {
  2817. "__uuid__": "7b0cb21a-d44d-4942-984e-11c68f2435ce@f9941",
  2818. "__expectedType__": "cc.SpriteFrame"
  2819. },
  2820. "_headTailFixedOnOff": true,
  2821. "_headTailFrame": {
  2822. "__uuid__": "5c51ab18-39b2-4380-88ee-1bf6f69b31bb@f9941",
  2823. "__expectedType__": "cc.SpriteFrame"
  2824. },
  2825. "_updownFix": false,
  2826. "_thickness": 0,
  2827. "_offset": {
  2828. "__type__": "cc.Vec3",
  2829. "x": 0,
  2830. "y": 0,
  2831. "z": 0
  2832. },
  2833. "_smoothness": 16,
  2834. "_headTailCloseOnoff": false,
  2835. "_innerMeshSprite": null,
  2836. "_physcisOnOff": false,
  2837. "_physicsThickness": 0,
  2838. "_offsetCollider": {
  2839. "__type__": "cc.Vec3",
  2840. "x": 0,
  2841. "y": 0,
  2842. "z": 0
  2843. },
  2844. "_visibleOnOff": true,
  2845. "_sortInXDirection": false,
  2846. "_editWhenRun": true,
  2847. "_gizmotag": {
  2848. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  2849. "__expectedType__": "cc.SpriteFrame"
  2850. },
  2851. "_gizmoColor": {
  2852. "__type__": "cc.Color",
  2853. "r": 255,
  2854. "g": 156,
  2855. "b": 156,
  2856. "a": 17
  2857. },
  2858. "_id": "28dyDpB/5H8Jmu1GGV5j/h"
  2859. },
  2860. {
  2861. "__type__": "cc.UIMeshRenderer",
  2862. "_name": "",
  2863. "_objFlags": 0,
  2864. "__editorExtras__": {},
  2865. "node": {
  2866. "__id__": 14
  2867. },
  2868. "_enabled": true,
  2869. "__prefab": null,
  2870. "_id": "aamPjtskBAZ5NiCs6PYPwn"
  2871. },
  2872. {
  2873. "__type__": "cc.UIOpacity",
  2874. "_name": "",
  2875. "_objFlags": 0,
  2876. "__editorExtras__": {},
  2877. "node": {
  2878. "__id__": 13
  2879. },
  2880. "_enabled": true,
  2881. "__prefab": null,
  2882. "_opacity": 255,
  2883. "_id": "4bweYMlTVCSa4FIQRFltaG"
  2884. },
  2885. {
  2886. "__type__": "cc.UITransform",
  2887. "_name": "",
  2888. "_objFlags": 0,
  2889. "__editorExtras__": {},
  2890. "node": {
  2891. "__id__": 13
  2892. },
  2893. "_enabled": true,
  2894. "__prefab": null,
  2895. "_contentSize": {
  2896. "__type__": "cc.Size",
  2897. "width": 80,
  2898. "height": 80
  2899. },
  2900. "_anchorPoint": {
  2901. "__type__": "cc.Vec2",
  2902. "x": 0.5,
  2903. "y": 0.5
  2904. },
  2905. "_id": "14ehgQe0xJlJmAys5r6jID"
  2906. },
  2907. {
  2908. "__type__": "cc.Sprite",
  2909. "_name": "",
  2910. "_objFlags": 0,
  2911. "__editorExtras__": {},
  2912. "node": {
  2913. "__id__": 13
  2914. },
  2915. "_enabled": true,
  2916. "__prefab": null,
  2917. "_customMaterial": null,
  2918. "_srcBlendFactor": 2,
  2919. "_dstBlendFactor": 4,
  2920. "_color": {
  2921. "__type__": "cc.Color",
  2922. "r": 255,
  2923. "g": 156,
  2924. "b": 156,
  2925. "a": 17
  2926. },
  2927. "_spriteFrame": {
  2928. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  2929. "__expectedType__": "cc.SpriteFrame"
  2930. },
  2931. "_type": 0,
  2932. "_fillType": 0,
  2933. "_sizeMode": 0,
  2934. "_fillCenter": {
  2935. "__type__": "cc.Vec2",
  2936. "x": 0,
  2937. "y": 0
  2938. },
  2939. "_fillStart": 0,
  2940. "_fillRange": 0,
  2941. "_isTrimmedMode": true,
  2942. "_useGrayscale": false,
  2943. "_atlas": null,
  2944. "_id": "32jPh8o/BDkKQ/pEaIg/Mc"
  2945. },
  2946. {
  2947. "__type__": "cc.CircleCollider2D",
  2948. "_name": "",
  2949. "_objFlags": 0,
  2950. "__editorExtras__": {},
  2951. "node": {
  2952. "__id__": 13
  2953. },
  2954. "_enabled": true,
  2955. "__prefab": null,
  2956. "tag": 0,
  2957. "_group": 1,
  2958. "_density": 0.1,
  2959. "_sensor": false,
  2960. "_friction": 0.2,
  2961. "_restitution": 0.1,
  2962. "_offset": {
  2963. "__type__": "cc.Vec2",
  2964. "x": 0,
  2965. "y": 0
  2966. },
  2967. "_radius": 7.1,
  2968. "_id": "8dfwYQYCVH17rNy3mk/yK+"
  2969. },
  2970. {
  2971. "__type__": "cc.HingeJoint2D",
  2972. "_name": "",
  2973. "_objFlags": 0,
  2974. "__editorExtras__": {},
  2975. "node": {
  2976. "__id__": 13
  2977. },
  2978. "_enabled": true,
  2979. "__prefab": null,
  2980. "anchor": {
  2981. "__type__": "cc.Vec2",
  2982. "x": 81.7,
  2983. "y": 0.4
  2984. },
  2985. "connectedAnchor": {
  2986. "__type__": "cc.Vec2",
  2987. "x": 0,
  2988. "y": 0
  2989. },
  2990. "collideConnected": false,
  2991. "connectedBody": {
  2992. "__id__": 30
  2993. },
  2994. "_enableLimit": false,
  2995. "_lowerAngle": 0,
  2996. "_upperAngle": 0,
  2997. "_enableMotor": false,
  2998. "_maxMotorTorque": 1000,
  2999. "_motorSpeed": 0,
  3000. "_id": "b7VyIKMLlF/ZVAO10LgeXi"
  3001. },
  3002. {
  3003. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  3004. "_name": "",
  3005. "_objFlags": 0,
  3006. "__editorExtras__": {},
  3007. "node": {
  3008. "__id__": 13
  3009. },
  3010. "_enabled": true,
  3011. "__prefab": null,
  3012. "_id": "90CeQdWzROhpmdDdmSJHqQ"
  3013. },
  3014. {
  3015. "__type__": "cc.HingeJoint2D",
  3016. "_name": "",
  3017. "_objFlags": 0,
  3018. "__editorExtras__": {},
  3019. "node": {
  3020. "__id__": 5
  3021. },
  3022. "_enabled": true,
  3023. "__prefab": null,
  3024. "anchor": {
  3025. "__type__": "cc.Vec2",
  3026. "x": -256.3,
  3027. "y": -14.2
  3028. },
  3029. "connectedAnchor": {
  3030. "__type__": "cc.Vec2",
  3031. "x": 0,
  3032. "y": 0
  3033. },
  3034. "collideConnected": false,
  3035. "connectedBody": {
  3036. "__id__": 100
  3037. },
  3038. "_enableLimit": false,
  3039. "_lowerAngle": 0,
  3040. "_upperAngle": 0,
  3041. "_enableMotor": false,
  3042. "_maxMotorTorque": 1000,
  3043. "_motorSpeed": 0,
  3044. "_id": "218m29GY5CNoZMYGT3v82+"
  3045. },
  3046. {
  3047. "__type__": "cc.RigidBody2D",
  3048. "_name": "",
  3049. "_objFlags": 0,
  3050. "__editorExtras__": {},
  3051. "node": {
  3052. "__id__": 101
  3053. },
  3054. "_enabled": true,
  3055. "__prefab": null,
  3056. "enabledContactListener": false,
  3057. "bullet": false,
  3058. "awakeOnLoad": true,
  3059. "_group": 1,
  3060. "_type": 2,
  3061. "_allowSleep": true,
  3062. "_gravityScale": 1,
  3063. "_linearDamping": 0,
  3064. "_angularDamping": 0,
  3065. "_linearVelocity": {
  3066. "__type__": "cc.Vec2",
  3067. "x": 0,
  3068. "y": 0
  3069. },
  3070. "_angularVelocity": 0,
  3071. "_fixedRotation": false,
  3072. "_id": "0aOK1xUidCkZXqbOJAn1FK"
  3073. },
  3074. {
  3075. "__type__": "cc.Node",
  3076. "_name": "gizmo_2",
  3077. "_objFlags": 0,
  3078. "__editorExtras__": {},
  3079. "_parent": {
  3080. "__id__": 102
  3081. },
  3082. "_children": [],
  3083. "_active": true,
  3084. "_components": [
  3085. {
  3086. "__id__": 181
  3087. },
  3088. {
  3089. "__id__": 182
  3090. },
  3091. {
  3092. "__id__": 183
  3093. },
  3094. {
  3095. "__id__": 184
  3096. },
  3097. {
  3098. "__id__": 100
  3099. },
  3100. {
  3101. "__id__": 185
  3102. },
  3103. {
  3104. "__id__": 186
  3105. }
  3106. ],
  3107. "_prefab": null,
  3108. "_lpos": {
  3109. "__type__": "cc.Vec3",
  3110. "x": -63.26099999999997,
  3111. "y": 382.25499999999994,
  3112. "z": 0
  3113. },
  3114. "_lrot": {
  3115. "__type__": "cc.Quat",
  3116. "x": 0,
  3117. "y": 0,
  3118. "z": 0.3193567276085698,
  3119. "w": -0.9476345711988065
  3120. },
  3121. "_lscale": {
  3122. "__type__": "cc.Vec3",
  3123. "x": 1,
  3124. "y": 1,
  3125. "z": 1
  3126. },
  3127. "_mobility": 0,
  3128. "_layer": 1073741824,
  3129. "_euler": {
  3130. "__type__": "cc.Vec3",
  3131. "x": 0,
  3132. "y": 0,
  3133. "z": 322.75194606786016
  3134. },
  3135. "_id": "44zGC3ZwtGj7xgsc06PHBY"
  3136. },
  3137. {
  3138. "__type__": "cc.Node",
  3139. "_name": "CT_ROPE-001",
  3140. "_objFlags": 0,
  3141. "__editorExtras__": {},
  3142. "_parent": {
  3143. "__id__": 2
  3144. },
  3145. "_children": [
  3146. {
  3147. "__id__": 103
  3148. },
  3149. {
  3150. "__id__": 108
  3151. },
  3152. {
  3153. "__id__": 101
  3154. },
  3155. {
  3156. "__id__": 113
  3157. },
  3158. {
  3159. "__id__": 121
  3160. },
  3161. {
  3162. "__id__": 128
  3163. },
  3164. {
  3165. "__id__": 135
  3166. },
  3167. {
  3168. "__id__": 142
  3169. },
  3170. {
  3171. "__id__": 149
  3172. },
  3173. {
  3174. "__id__": 156
  3175. },
  3176. {
  3177. "__id__": 163
  3178. }
  3179. ],
  3180. "_active": true,
  3181. "_components": [
  3182. {
  3183. "__id__": 176
  3184. },
  3185. {
  3186. "__id__": 177
  3187. },
  3188. {
  3189. "__id__": 179
  3190. },
  3191. {
  3192. "__id__": 180
  3193. }
  3194. ],
  3195. "_prefab": null,
  3196. "_lpos": {
  3197. "__type__": "cc.Vec3",
  3198. "x": -43.23,
  3199. "y": -27.596,
  3200. "z": 0
  3201. },
  3202. "_lrot": {
  3203. "__type__": "cc.Quat",
  3204. "x": 0,
  3205. "y": 0,
  3206. "z": 0,
  3207. "w": 1
  3208. },
  3209. "_lscale": {
  3210. "__type__": "cc.Vec3",
  3211. "x": 1,
  3212. "y": 1,
  3213. "z": 1
  3214. },
  3215. "_mobility": 0,
  3216. "_layer": 33554432,
  3217. "_euler": {
  3218. "__type__": "cc.Vec3",
  3219. "x": 0,
  3220. "y": 0,
  3221. "z": 0
  3222. },
  3223. "_id": "95Yqqj7SROea3UlyD5rTke"
  3224. },
  3225. {
  3226. "__type__": "cc.Node",
  3227. "_name": "_tailNode_",
  3228. "_objFlags": 0,
  3229. "__editorExtras__": {},
  3230. "_parent": {
  3231. "__id__": 102
  3232. },
  3233. "_children": [],
  3234. "_active": true,
  3235. "_components": [
  3236. {
  3237. "__id__": 104
  3238. },
  3239. {
  3240. "__id__": 106
  3241. },
  3242. {
  3243. "__id__": 107
  3244. }
  3245. ],
  3246. "_prefab": null,
  3247. "_lpos": {
  3248. "__type__": "cc.Vec3",
  3249. "x": 0,
  3250. "y": 0,
  3251. "z": 0
  3252. },
  3253. "_lrot": {
  3254. "__type__": "cc.Quat",
  3255. "x": 0,
  3256. "y": 0,
  3257. "z": 0,
  3258. "w": 1
  3259. },
  3260. "_lscale": {
  3261. "__type__": "cc.Vec3",
  3262. "x": 1,
  3263. "y": 1,
  3264. "z": 1
  3265. },
  3266. "_mobility": 0,
  3267. "_layer": 1073741824,
  3268. "_euler": {
  3269. "__type__": "cc.Vec3",
  3270. "x": 0,
  3271. "y": 0,
  3272. "z": 0
  3273. },
  3274. "_id": "afzhmz5j1JNovGSCAxT7Xg"
  3275. },
  3276. {
  3277. "__type__": "cc.MeshRenderer",
  3278. "_name": "",
  3279. "_objFlags": 0,
  3280. "__editorExtras__": {},
  3281. "node": {
  3282. "__id__": 103
  3283. },
  3284. "_enabled": true,
  3285. "__prefab": null,
  3286. "_materials": [
  3287. null
  3288. ],
  3289. "_visFlags": 0,
  3290. "bakeSettings": {
  3291. "__id__": 105
  3292. },
  3293. "_mesh": null,
  3294. "_shadowCastingMode": 0,
  3295. "_shadowReceivingMode": 1,
  3296. "_shadowBias": 0,
  3297. "_shadowNormalBias": 0,
  3298. "_reflectionProbeId": -1,
  3299. "_reflectionProbeBlendId": -1,
  3300. "_reflectionProbeBlendWeight": 0,
  3301. "_enabledGlobalStandardSkinObject": false,
  3302. "_enableMorph": true,
  3303. "_id": "fefQLmiu9ItL25/y9JtbgC"
  3304. },
  3305. {
  3306. "__type__": "cc.ModelBakeSettings",
  3307. "texture": null,
  3308. "uvParam": {
  3309. "__type__": "cc.Vec4",
  3310. "x": 0,
  3311. "y": 0,
  3312. "z": 0,
  3313. "w": 0
  3314. },
  3315. "_bakeable": false,
  3316. "_castShadow": false,
  3317. "_receiveShadow": false,
  3318. "_recieveShadow": false,
  3319. "_lightmapSize": 64,
  3320. "_useLightProbe": false,
  3321. "_bakeToLightProbe": true,
  3322. "_reflectionProbeType": 0,
  3323. "_bakeToReflectionProbe": true
  3324. },
  3325. {
  3326. "__type__": "cc.UIMeshRenderer",
  3327. "_name": "",
  3328. "_objFlags": 0,
  3329. "__editorExtras__": {},
  3330. "node": {
  3331. "__id__": 103
  3332. },
  3333. "_enabled": true,
  3334. "__prefab": null,
  3335. "_id": "2awQ7jWTRJ4pW6HE5b5hEO"
  3336. },
  3337. {
  3338. "__type__": "cc.UITransform",
  3339. "_name": "",
  3340. "_objFlags": 0,
  3341. "__editorExtras__": {},
  3342. "node": {
  3343. "__id__": 103
  3344. },
  3345. "_enabled": true,
  3346. "__prefab": null,
  3347. "_contentSize": {
  3348. "__type__": "cc.Size",
  3349. "width": 100,
  3350. "height": 100
  3351. },
  3352. "_anchorPoint": {
  3353. "__type__": "cc.Vec2",
  3354. "x": 0.5,
  3355. "y": 0.5
  3356. },
  3357. "_id": "e1+yB4xRZJMbWV07j/BBrJ"
  3358. },
  3359. {
  3360. "__type__": "cc.Node",
  3361. "_name": "_headNode_",
  3362. "_objFlags": 0,
  3363. "__editorExtras__": {},
  3364. "_parent": {
  3365. "__id__": 102
  3366. },
  3367. "_children": [],
  3368. "_active": true,
  3369. "_components": [
  3370. {
  3371. "__id__": 109
  3372. },
  3373. {
  3374. "__id__": 111
  3375. },
  3376. {
  3377. "__id__": 112
  3378. }
  3379. ],
  3380. "_prefab": null,
  3381. "_lpos": {
  3382. "__type__": "cc.Vec3",
  3383. "x": 0,
  3384. "y": 0,
  3385. "z": 0
  3386. },
  3387. "_lrot": {
  3388. "__type__": "cc.Quat",
  3389. "x": 0,
  3390. "y": 0,
  3391. "z": 0,
  3392. "w": 1
  3393. },
  3394. "_lscale": {
  3395. "__type__": "cc.Vec3",
  3396. "x": 1,
  3397. "y": 1,
  3398. "z": 1
  3399. },
  3400. "_mobility": 0,
  3401. "_layer": 1073741824,
  3402. "_euler": {
  3403. "__type__": "cc.Vec3",
  3404. "x": 0,
  3405. "y": 0,
  3406. "z": 0
  3407. },
  3408. "_id": "177hL9cW1J/obt26qUQPwG"
  3409. },
  3410. {
  3411. "__type__": "cc.MeshRenderer",
  3412. "_name": "",
  3413. "_objFlags": 0,
  3414. "__editorExtras__": {},
  3415. "node": {
  3416. "__id__": 108
  3417. },
  3418. "_enabled": true,
  3419. "__prefab": null,
  3420. "_materials": [
  3421. null
  3422. ],
  3423. "_visFlags": 0,
  3424. "bakeSettings": {
  3425. "__id__": 110
  3426. },
  3427. "_mesh": null,
  3428. "_shadowCastingMode": 0,
  3429. "_shadowReceivingMode": 1,
  3430. "_shadowBias": 0,
  3431. "_shadowNormalBias": 0,
  3432. "_reflectionProbeId": -1,
  3433. "_reflectionProbeBlendId": -1,
  3434. "_reflectionProbeBlendWeight": 0,
  3435. "_enabledGlobalStandardSkinObject": false,
  3436. "_enableMorph": true,
  3437. "_id": "544WIbNRpM6b9LYaIYtNnV"
  3438. },
  3439. {
  3440. "__type__": "cc.ModelBakeSettings",
  3441. "texture": null,
  3442. "uvParam": {
  3443. "__type__": "cc.Vec4",
  3444. "x": 0,
  3445. "y": 0,
  3446. "z": 0,
  3447. "w": 0
  3448. },
  3449. "_bakeable": false,
  3450. "_castShadow": false,
  3451. "_receiveShadow": false,
  3452. "_recieveShadow": false,
  3453. "_lightmapSize": 64,
  3454. "_useLightProbe": false,
  3455. "_bakeToLightProbe": true,
  3456. "_reflectionProbeType": 0,
  3457. "_bakeToReflectionProbe": true
  3458. },
  3459. {
  3460. "__type__": "cc.UIMeshRenderer",
  3461. "_name": "",
  3462. "_objFlags": 0,
  3463. "__editorExtras__": {},
  3464. "node": {
  3465. "__id__": 108
  3466. },
  3467. "_enabled": true,
  3468. "__prefab": null,
  3469. "_id": "8bD1zu/Z1LnLXgFUJzbK4S"
  3470. },
  3471. {
  3472. "__type__": "cc.UITransform",
  3473. "_name": "",
  3474. "_objFlags": 0,
  3475. "__editorExtras__": {},
  3476. "node": {
  3477. "__id__": 108
  3478. },
  3479. "_enabled": true,
  3480. "__prefab": null,
  3481. "_contentSize": {
  3482. "__type__": "cc.Size",
  3483. "width": 100,
  3484. "height": 100
  3485. },
  3486. "_anchorPoint": {
  3487. "__type__": "cc.Vec2",
  3488. "x": 0.5,
  3489. "y": 0.5
  3490. },
  3491. "_id": "67MBfuPldJla1lnMY0+T0v"
  3492. },
  3493. {
  3494. "__type__": "cc.Node",
  3495. "_name": "gizmo_5",
  3496. "_objFlags": 0,
  3497. "__editorExtras__": {},
  3498. "_parent": {
  3499. "__id__": 102
  3500. },
  3501. "_children": [],
  3502. "_active": true,
  3503. "_components": [
  3504. {
  3505. "__id__": 114
  3506. },
  3507. {
  3508. "__id__": 115
  3509. },
  3510. {
  3511. "__id__": 116
  3512. },
  3513. {
  3514. "__id__": 117
  3515. },
  3516. {
  3517. "__id__": 118
  3518. },
  3519. {
  3520. "__id__": 119
  3521. },
  3522. {
  3523. "__id__": 175
  3524. }
  3525. ],
  3526. "_prefab": null,
  3527. "_lpos": {
  3528. "__type__": "cc.Vec3",
  3529. "x": 1.892,
  3530. "y": 332.715,
  3531. "z": 0
  3532. },
  3533. "_lrot": {
  3534. "__type__": "cc.Quat",
  3535. "x": 0,
  3536. "y": 0,
  3537. "z": 0.31383264658448035,
  3538. "w": -0.9494783146221828
  3539. },
  3540. "_lscale": {
  3541. "__type__": "cc.Vec3",
  3542. "x": 1,
  3543. "y": 1,
  3544. "z": 1
  3545. },
  3546. "_mobility": 0,
  3547. "_layer": 1073741824,
  3548. "_euler": {
  3549. "__type__": "cc.Vec3",
  3550. "x": 0,
  3551. "y": 0,
  3552. "z": 323.41928776630783
  3553. },
  3554. "_id": "bfV1oGRCpCCaIg6aM1y7Bb"
  3555. },
  3556. {
  3557. "__type__": "cc.UIOpacity",
  3558. "_name": "",
  3559. "_objFlags": 0,
  3560. "__editorExtras__": {},
  3561. "node": {
  3562. "__id__": 113
  3563. },
  3564. "_enabled": true,
  3565. "__prefab": null,
  3566. "_opacity": 255,
  3567. "_id": "cbZxDM/HVF/oGMH1OnycJp"
  3568. },
  3569. {
  3570. "__type__": "cc.UITransform",
  3571. "_name": "",
  3572. "_objFlags": 0,
  3573. "__editorExtras__": {},
  3574. "node": {
  3575. "__id__": 113
  3576. },
  3577. "_enabled": true,
  3578. "__prefab": null,
  3579. "_contentSize": {
  3580. "__type__": "cc.Size",
  3581. "width": 80,
  3582. "height": 80
  3583. },
  3584. "_anchorPoint": {
  3585. "__type__": "cc.Vec2",
  3586. "x": 0.5,
  3587. "y": 0.5
  3588. },
  3589. "_id": "dddrTPAABGtbqafFst5mwA"
  3590. },
  3591. {
  3592. "__type__": "cc.Sprite",
  3593. "_name": "",
  3594. "_objFlags": 0,
  3595. "__editorExtras__": {},
  3596. "node": {
  3597. "__id__": 113
  3598. },
  3599. "_enabled": true,
  3600. "__prefab": null,
  3601. "_customMaterial": null,
  3602. "_srcBlendFactor": 2,
  3603. "_dstBlendFactor": 4,
  3604. "_color": {
  3605. "__type__": "cc.Color",
  3606. "r": 255,
  3607. "g": 156,
  3608. "b": 156,
  3609. "a": 17
  3610. },
  3611. "_spriteFrame": {
  3612. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  3613. "__expectedType__": "cc.SpriteFrame"
  3614. },
  3615. "_type": 0,
  3616. "_fillType": 0,
  3617. "_sizeMode": 0,
  3618. "_fillCenter": {
  3619. "__type__": "cc.Vec2",
  3620. "x": 0,
  3621. "y": 0
  3622. },
  3623. "_fillStart": 0,
  3624. "_fillRange": 0,
  3625. "_isTrimmedMode": true,
  3626. "_useGrayscale": false,
  3627. "_atlas": null,
  3628. "_id": "0bKopuZzdJrICwoScuSuOv"
  3629. },
  3630. {
  3631. "__type__": "cc.CircleCollider2D",
  3632. "_name": "",
  3633. "_objFlags": 0,
  3634. "__editorExtras__": {},
  3635. "node": {
  3636. "__id__": 113
  3637. },
  3638. "_enabled": true,
  3639. "__prefab": null,
  3640. "tag": 0,
  3641. "_group": 1,
  3642. "_density": 0.01,
  3643. "_sensor": false,
  3644. "_friction": 0.2,
  3645. "_restitution": 0.1,
  3646. "_offset": {
  3647. "__type__": "cc.Vec2",
  3648. "x": 0,
  3649. "y": 0
  3650. },
  3651. "_radius": 7.1,
  3652. "_id": "91GKClwY1E5qTwaBO0NcW0"
  3653. },
  3654. {
  3655. "__type__": "cc.RigidBody2D",
  3656. "_name": "",
  3657. "_objFlags": 0,
  3658. "__editorExtras__": {},
  3659. "node": {
  3660. "__id__": 113
  3661. },
  3662. "_enabled": true,
  3663. "__prefab": null,
  3664. "enabledContactListener": false,
  3665. "bullet": false,
  3666. "awakeOnLoad": true,
  3667. "_group": 1,
  3668. "_type": 2,
  3669. "_allowSleep": true,
  3670. "_gravityScale": 1,
  3671. "_linearDamping": 0,
  3672. "_angularDamping": 0,
  3673. "_linearVelocity": {
  3674. "__type__": "cc.Vec2",
  3675. "x": 0,
  3676. "y": 0
  3677. },
  3678. "_angularVelocity": 0,
  3679. "_fixedRotation": false,
  3680. "_id": "f6PI+7wxFI25mmvbdfSa7c"
  3681. },
  3682. {
  3683. "__type__": "cc.HingeJoint2D",
  3684. "_name": "",
  3685. "_objFlags": 0,
  3686. "__editorExtras__": {},
  3687. "node": {
  3688. "__id__": 113
  3689. },
  3690. "_enabled": true,
  3691. "__prefab": null,
  3692. "anchor": {
  3693. "__type__": "cc.Vec2",
  3694. "x": 81.9,
  3695. "y": -0.3
  3696. },
  3697. "connectedAnchor": {
  3698. "__type__": "cc.Vec2",
  3699. "x": 0,
  3700. "y": 0
  3701. },
  3702. "collideConnected": false,
  3703. "connectedBody": {
  3704. "__id__": 120
  3705. },
  3706. "_enableLimit": false,
  3707. "_lowerAngle": 0,
  3708. "_upperAngle": 0,
  3709. "_enableMotor": false,
  3710. "_maxMotorTorque": 1000,
  3711. "_motorSpeed": 0,
  3712. "_id": "23syd0QpdAoJJo6LqM866W"
  3713. },
  3714. {
  3715. "__type__": "cc.RigidBody2D",
  3716. "_name": "",
  3717. "_objFlags": 0,
  3718. "__editorExtras__": {},
  3719. "node": {
  3720. "__id__": 121
  3721. },
  3722. "_enabled": true,
  3723. "__prefab": null,
  3724. "enabledContactListener": false,
  3725. "bullet": false,
  3726. "awakeOnLoad": true,
  3727. "_group": 1,
  3728. "_type": 2,
  3729. "_allowSleep": true,
  3730. "_gravityScale": 1,
  3731. "_linearDamping": 0,
  3732. "_angularDamping": 0,
  3733. "_linearVelocity": {
  3734. "__type__": "cc.Vec2",
  3735. "x": 0,
  3736. "y": 0
  3737. },
  3738. "_angularVelocity": 0,
  3739. "_fixedRotation": false,
  3740. "_id": "a4rV3DVKBLP4PgJq1y38Y5"
  3741. },
  3742. {
  3743. "__type__": "cc.Node",
  3744. "_name": "gizmo_6",
  3745. "_objFlags": 0,
  3746. "__editorExtras__": {},
  3747. "_parent": {
  3748. "__id__": 102
  3749. },
  3750. "_children": [],
  3751. "_active": true,
  3752. "_components": [
  3753. {
  3754. "__id__": 122
  3755. },
  3756. {
  3757. "__id__": 123
  3758. },
  3759. {
  3760. "__id__": 124
  3761. },
  3762. {
  3763. "__id__": 125
  3764. },
  3765. {
  3766. "__id__": 120
  3767. },
  3768. {
  3769. "__id__": 126
  3770. },
  3771. {
  3772. "__id__": 174
  3773. }
  3774. ],
  3775. "_prefab": null,
  3776. "_lpos": {
  3777. "__type__": "cc.Vec3",
  3778. "x": 67.6087500000001,
  3779. "y": 283.94374999999997,
  3780. "z": 0
  3781. },
  3782. "_lrot": {
  3783. "__type__": "cc.Quat",
  3784. "x": 0,
  3785. "y": 0,
  3786. "z": 0.31138810556964086,
  3787. "w": -0.9502828251156338
  3788. },
  3789. "_lscale": {
  3790. "__type__": "cc.Vec3",
  3791. "x": 1,
  3792. "y": 1,
  3793. "z": 1
  3794. },
  3795. "_mobility": 0,
  3796. "_layer": 1073741824,
  3797. "_euler": {
  3798. "__type__": "cc.Vec3",
  3799. "x": 0,
  3800. "y": 0,
  3801. "z": 323.7141917997981
  3802. },
  3803. "_id": "a755OqdPpJ5YEEKSGmgmh1"
  3804. },
  3805. {
  3806. "__type__": "cc.UIOpacity",
  3807. "_name": "",
  3808. "_objFlags": 0,
  3809. "__editorExtras__": {},
  3810. "node": {
  3811. "__id__": 121
  3812. },
  3813. "_enabled": true,
  3814. "__prefab": null,
  3815. "_opacity": 255,
  3816. "_id": "04+2EYcf1DmbYK+lI5SoDw"
  3817. },
  3818. {
  3819. "__type__": "cc.UITransform",
  3820. "_name": "",
  3821. "_objFlags": 0,
  3822. "__editorExtras__": {},
  3823. "node": {
  3824. "__id__": 121
  3825. },
  3826. "_enabled": true,
  3827. "__prefab": null,
  3828. "_contentSize": {
  3829. "__type__": "cc.Size",
  3830. "width": 80,
  3831. "height": 80
  3832. },
  3833. "_anchorPoint": {
  3834. "__type__": "cc.Vec2",
  3835. "x": 0.5,
  3836. "y": 0.5
  3837. },
  3838. "_id": "2f3ogZ0vZOi6gEoAbytGYl"
  3839. },
  3840. {
  3841. "__type__": "cc.Sprite",
  3842. "_name": "",
  3843. "_objFlags": 0,
  3844. "__editorExtras__": {},
  3845. "node": {
  3846. "__id__": 121
  3847. },
  3848. "_enabled": true,
  3849. "__prefab": null,
  3850. "_customMaterial": null,
  3851. "_srcBlendFactor": 2,
  3852. "_dstBlendFactor": 4,
  3853. "_color": {
  3854. "__type__": "cc.Color",
  3855. "r": 255,
  3856. "g": 156,
  3857. "b": 156,
  3858. "a": 17
  3859. },
  3860. "_spriteFrame": {
  3861. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  3862. "__expectedType__": "cc.SpriteFrame"
  3863. },
  3864. "_type": 0,
  3865. "_fillType": 0,
  3866. "_sizeMode": 0,
  3867. "_fillCenter": {
  3868. "__type__": "cc.Vec2",
  3869. "x": 0,
  3870. "y": 0
  3871. },
  3872. "_fillStart": 0,
  3873. "_fillRange": 0,
  3874. "_isTrimmedMode": true,
  3875. "_useGrayscale": false,
  3876. "_atlas": null,
  3877. "_id": "4cgs5qGmRBC49qZZY8g+xW"
  3878. },
  3879. {
  3880. "__type__": "cc.CircleCollider2D",
  3881. "_name": "",
  3882. "_objFlags": 0,
  3883. "__editorExtras__": {},
  3884. "node": {
  3885. "__id__": 121
  3886. },
  3887. "_enabled": true,
  3888. "__prefab": null,
  3889. "tag": 0,
  3890. "_group": 1,
  3891. "_density": 0.01,
  3892. "_sensor": false,
  3893. "_friction": 0.2,
  3894. "_restitution": 0.1,
  3895. "_offset": {
  3896. "__type__": "cc.Vec2",
  3897. "x": 0,
  3898. "y": 0
  3899. },
  3900. "_radius": 7.1,
  3901. "_id": "4dSsyIukdBf6i/aPC6Kw8t"
  3902. },
  3903. {
  3904. "__type__": "cc.HingeJoint2D",
  3905. "_name": "",
  3906. "_objFlags": 0,
  3907. "__editorExtras__": {},
  3908. "node": {
  3909. "__id__": 121
  3910. },
  3911. "_enabled": true,
  3912. "__prefab": null,
  3913. "anchor": {
  3914. "__type__": "cc.Vec2",
  3915. "x": 81.9,
  3916. "y": 4.2
  3917. },
  3918. "connectedAnchor": {
  3919. "__type__": "cc.Vec2",
  3920. "x": 0.3,
  3921. "y": 3.7
  3922. },
  3923. "collideConnected": false,
  3924. "connectedBody": {
  3925. "__id__": 127
  3926. },
  3927. "_enableLimit": false,
  3928. "_lowerAngle": 0,
  3929. "_upperAngle": 0,
  3930. "_enableMotor": false,
  3931. "_maxMotorTorque": 1000,
  3932. "_motorSpeed": 0,
  3933. "_id": "dcsLsG/mNECpSetTSnGJzq"
  3934. },
  3935. {
  3936. "__type__": "cc.RigidBody2D",
  3937. "_name": "",
  3938. "_objFlags": 0,
  3939. "__editorExtras__": {},
  3940. "node": {
  3941. "__id__": 128
  3942. },
  3943. "_enabled": true,
  3944. "__prefab": null,
  3945. "enabledContactListener": false,
  3946. "bullet": false,
  3947. "awakeOnLoad": true,
  3948. "_group": 1,
  3949. "_type": 2,
  3950. "_allowSleep": true,
  3951. "_gravityScale": 1,
  3952. "_linearDamping": 0,
  3953. "_angularDamping": 0,
  3954. "_linearVelocity": {
  3955. "__type__": "cc.Vec2",
  3956. "x": 0,
  3957. "y": 0
  3958. },
  3959. "_angularVelocity": 0,
  3960. "_fixedRotation": false,
  3961. "_id": "6aG8rGTtFLs6UC7+SNrLLN"
  3962. },
  3963. {
  3964. "__type__": "cc.Node",
  3965. "_name": "gizmo_7",
  3966. "_objFlags": 0,
  3967. "__editorExtras__": {},
  3968. "_parent": {
  3969. "__id__": 102
  3970. },
  3971. "_children": [],
  3972. "_active": true,
  3973. "_components": [
  3974. {
  3975. "__id__": 129
  3976. },
  3977. {
  3978. "__id__": 130
  3979. },
  3980. {
  3981. "__id__": 131
  3982. },
  3983. {
  3984. "__id__": 132
  3985. },
  3986. {
  3987. "__id__": 127
  3988. },
  3989. {
  3990. "__id__": 133
  3991. },
  3992. {
  3993. "__id__": 173
  3994. }
  3995. ],
  3996. "_prefab": null,
  3997. "_lpos": {
  3998. "__type__": "cc.Vec3",
  3999. "x": 133.583,
  4000. "y": 235.506,
  4001. "z": 0
  4002. },
  4003. "_lrot": {
  4004. "__type__": "cc.Quat",
  4005. "x": 0,
  4006. "y": 0,
  4007. "z": 0.3217948069562725,
  4008. "w": -0.9468094328934283
  4009. },
  4010. "_lscale": {
  4011. "__type__": "cc.Vec3",
  4012. "x": 1,
  4013. "y": 1,
  4014. "z": 1
  4015. },
  4016. "_mobility": 0,
  4017. "_layer": 1073741824,
  4018. "_euler": {
  4019. "__type__": "cc.Vec3",
  4020. "x": 0,
  4021. "y": 0,
  4022. "z": 322.4569960364691
  4023. },
  4024. "_id": "277EXJGcpDuI2bndP1Fv1c"
  4025. },
  4026. {
  4027. "__type__": "cc.UIOpacity",
  4028. "_name": "",
  4029. "_objFlags": 0,
  4030. "__editorExtras__": {},
  4031. "node": {
  4032. "__id__": 128
  4033. },
  4034. "_enabled": true,
  4035. "__prefab": null,
  4036. "_opacity": 255,
  4037. "_id": "0cljIskSdIRqPvEGOumIzy"
  4038. },
  4039. {
  4040. "__type__": "cc.UITransform",
  4041. "_name": "",
  4042. "_objFlags": 0,
  4043. "__editorExtras__": {},
  4044. "node": {
  4045. "__id__": 128
  4046. },
  4047. "_enabled": true,
  4048. "__prefab": null,
  4049. "_contentSize": {
  4050. "__type__": "cc.Size",
  4051. "width": 80,
  4052. "height": 80
  4053. },
  4054. "_anchorPoint": {
  4055. "__type__": "cc.Vec2",
  4056. "x": 0.5,
  4057. "y": 0.5
  4058. },
  4059. "_id": "03cIWlChNNFaJzJwy2Nr7P"
  4060. },
  4061. {
  4062. "__type__": "cc.Sprite",
  4063. "_name": "",
  4064. "_objFlags": 0,
  4065. "__editorExtras__": {},
  4066. "node": {
  4067. "__id__": 128
  4068. },
  4069. "_enabled": true,
  4070. "__prefab": null,
  4071. "_customMaterial": null,
  4072. "_srcBlendFactor": 2,
  4073. "_dstBlendFactor": 4,
  4074. "_color": {
  4075. "__type__": "cc.Color",
  4076. "r": 255,
  4077. "g": 156,
  4078. "b": 156,
  4079. "a": 17
  4080. },
  4081. "_spriteFrame": {
  4082. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  4083. "__expectedType__": "cc.SpriteFrame"
  4084. },
  4085. "_type": 0,
  4086. "_fillType": 0,
  4087. "_sizeMode": 0,
  4088. "_fillCenter": {
  4089. "__type__": "cc.Vec2",
  4090. "x": 0,
  4091. "y": 0
  4092. },
  4093. "_fillStart": 0,
  4094. "_fillRange": 0,
  4095. "_isTrimmedMode": true,
  4096. "_useGrayscale": false,
  4097. "_atlas": null,
  4098. "_id": "6f+xTR+4hD7YZl7wlXY12Y"
  4099. },
  4100. {
  4101. "__type__": "cc.CircleCollider2D",
  4102. "_name": "",
  4103. "_objFlags": 0,
  4104. "__editorExtras__": {},
  4105. "node": {
  4106. "__id__": 128
  4107. },
  4108. "_enabled": true,
  4109. "__prefab": null,
  4110. "tag": 0,
  4111. "_group": 1,
  4112. "_density": 0.01,
  4113. "_sensor": false,
  4114. "_friction": 0.2,
  4115. "_restitution": 0.1,
  4116. "_offset": {
  4117. "__type__": "cc.Vec2",
  4118. "x": 0,
  4119. "y": 0
  4120. },
  4121. "_radius": 7.1,
  4122. "_id": "4f2GK5c15PHrZCyNWg+xsy"
  4123. },
  4124. {
  4125. "__type__": "cc.HingeJoint2D",
  4126. "_name": "",
  4127. "_objFlags": 0,
  4128. "__editorExtras__": {},
  4129. "node": {
  4130. "__id__": 128
  4131. },
  4132. "_enabled": true,
  4133. "__prefab": null,
  4134. "anchor": {
  4135. "__type__": "cc.Vec2",
  4136. "x": 82.2,
  4137. "y": -0.2
  4138. },
  4139. "connectedAnchor": {
  4140. "__type__": "cc.Vec2",
  4141. "x": 0,
  4142. "y": 0
  4143. },
  4144. "collideConnected": false,
  4145. "connectedBody": {
  4146. "__id__": 134
  4147. },
  4148. "_enableLimit": false,
  4149. "_lowerAngle": 0,
  4150. "_upperAngle": 0,
  4151. "_enableMotor": false,
  4152. "_maxMotorTorque": 1000,
  4153. "_motorSpeed": 0,
  4154. "_id": "d1b4Ph8Y1MpIOC4VJIrfLY"
  4155. },
  4156. {
  4157. "__type__": "cc.RigidBody2D",
  4158. "_name": "",
  4159. "_objFlags": 0,
  4160. "__editorExtras__": {},
  4161. "node": {
  4162. "__id__": 135
  4163. },
  4164. "_enabled": true,
  4165. "__prefab": null,
  4166. "enabledContactListener": false,
  4167. "bullet": false,
  4168. "awakeOnLoad": true,
  4169. "_group": 1,
  4170. "_type": 2,
  4171. "_allowSleep": true,
  4172. "_gravityScale": 1,
  4173. "_linearDamping": 0,
  4174. "_angularDamping": 0,
  4175. "_linearVelocity": {
  4176. "__type__": "cc.Vec2",
  4177. "x": 0,
  4178. "y": 0
  4179. },
  4180. "_angularVelocity": 0,
  4181. "_fixedRotation": false,
  4182. "_id": "97JmyK9FFN8p0X5o3dWpvk"
  4183. },
  4184. {
  4185. "__type__": "cc.Node",
  4186. "_name": "gizmo_8",
  4187. "_objFlags": 0,
  4188. "__editorExtras__": {},
  4189. "_parent": {
  4190. "__id__": 102
  4191. },
  4192. "_children": [],
  4193. "_active": true,
  4194. "_components": [
  4195. {
  4196. "__id__": 136
  4197. },
  4198. {
  4199. "__id__": 137
  4200. },
  4201. {
  4202. "__id__": 138
  4203. },
  4204. {
  4205. "__id__": 139
  4206. },
  4207. {
  4208. "__id__": 134
  4209. },
  4210. {
  4211. "__id__": 140
  4212. },
  4213. {
  4214. "__id__": 172
  4215. }
  4216. ],
  4217. "_prefab": null,
  4218. "_lpos": {
  4219. "__type__": "cc.Vec3",
  4220. "x": 198.47850000000017,
  4221. "y": 185.6325,
  4222. "z": 0
  4223. },
  4224. "_lrot": {
  4225. "__type__": "cc.Quat",
  4226. "x": 0,
  4227. "y": 0,
  4228. "z": 0.33126462591912886,
  4229. "w": -0.9435378888071531
  4230. },
  4231. "_lscale": {
  4232. "__type__": "cc.Vec3",
  4233. "x": 1,
  4234. "y": 1,
  4235. "z": 1
  4236. },
  4237. "_mobility": 0,
  4238. "_layer": 1073741824,
  4239. "_euler": {
  4240. "__type__": "cc.Vec3",
  4241. "x": 0,
  4242. "y": 0,
  4243. "z": 321.30889777041625
  4244. },
  4245. "_id": "82poVregtAoasxYH/pKMcJ"
  4246. },
  4247. {
  4248. "__type__": "cc.UIOpacity",
  4249. "_name": "",
  4250. "_objFlags": 0,
  4251. "__editorExtras__": {},
  4252. "node": {
  4253. "__id__": 135
  4254. },
  4255. "_enabled": true,
  4256. "__prefab": null,
  4257. "_opacity": 255,
  4258. "_id": "a4VnOdPUpJ4ru2sLIdUViw"
  4259. },
  4260. {
  4261. "__type__": "cc.UITransform",
  4262. "_name": "",
  4263. "_objFlags": 0,
  4264. "__editorExtras__": {},
  4265. "node": {
  4266. "__id__": 135
  4267. },
  4268. "_enabled": true,
  4269. "__prefab": null,
  4270. "_contentSize": {
  4271. "__type__": "cc.Size",
  4272. "width": 80,
  4273. "height": 80
  4274. },
  4275. "_anchorPoint": {
  4276. "__type__": "cc.Vec2",
  4277. "x": 0.5,
  4278. "y": 0.5
  4279. },
  4280. "_id": "69/11TnhVEJJE6NebH7PwA"
  4281. },
  4282. {
  4283. "__type__": "cc.Sprite",
  4284. "_name": "",
  4285. "_objFlags": 0,
  4286. "__editorExtras__": {},
  4287. "node": {
  4288. "__id__": 135
  4289. },
  4290. "_enabled": true,
  4291. "__prefab": null,
  4292. "_customMaterial": null,
  4293. "_srcBlendFactor": 2,
  4294. "_dstBlendFactor": 4,
  4295. "_color": {
  4296. "__type__": "cc.Color",
  4297. "r": 255,
  4298. "g": 156,
  4299. "b": 156,
  4300. "a": 17
  4301. },
  4302. "_spriteFrame": {
  4303. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  4304. "__expectedType__": "cc.SpriteFrame"
  4305. },
  4306. "_type": 0,
  4307. "_fillType": 0,
  4308. "_sizeMode": 0,
  4309. "_fillCenter": {
  4310. "__type__": "cc.Vec2",
  4311. "x": 0,
  4312. "y": 0
  4313. },
  4314. "_fillStart": 0,
  4315. "_fillRange": 0,
  4316. "_isTrimmedMode": true,
  4317. "_useGrayscale": false,
  4318. "_atlas": null,
  4319. "_id": "42crk9gk9Mfq1hqdABRxWF"
  4320. },
  4321. {
  4322. "__type__": "cc.CircleCollider2D",
  4323. "_name": "",
  4324. "_objFlags": 0,
  4325. "__editorExtras__": {},
  4326. "node": {
  4327. "__id__": 135
  4328. },
  4329. "_enabled": true,
  4330. "__prefab": null,
  4331. "tag": 0,
  4332. "_group": 1,
  4333. "_density": 0.01,
  4334. "_sensor": false,
  4335. "_friction": 0.2,
  4336. "_restitution": 0.1,
  4337. "_offset": {
  4338. "__type__": "cc.Vec2",
  4339. "x": 0,
  4340. "y": 0
  4341. },
  4342. "_radius": 7.1,
  4343. "_id": "ccuzamtnNK4bJWb3A9T+qI"
  4344. },
  4345. {
  4346. "__type__": "cc.HingeJoint2D",
  4347. "_name": "",
  4348. "_objFlags": 0,
  4349. "__editorExtras__": {},
  4350. "node": {
  4351. "__id__": 135
  4352. },
  4353. "_enabled": true,
  4354. "__prefab": null,
  4355. "anchor": {
  4356. "__type__": "cc.Vec2",
  4357. "x": 81.9,
  4358. "y": -0.6
  4359. },
  4360. "connectedAnchor": {
  4361. "__type__": "cc.Vec2",
  4362. "x": 0,
  4363. "y": 0
  4364. },
  4365. "collideConnected": false,
  4366. "connectedBody": {
  4367. "__id__": 141
  4368. },
  4369. "_enableLimit": false,
  4370. "_lowerAngle": 0,
  4371. "_upperAngle": 0,
  4372. "_enableMotor": false,
  4373. "_maxMotorTorque": 1000,
  4374. "_motorSpeed": 0,
  4375. "_id": "76vmisHQVOlrciUvBd1keO"
  4376. },
  4377. {
  4378. "__type__": "cc.RigidBody2D",
  4379. "_name": "",
  4380. "_objFlags": 0,
  4381. "__editorExtras__": {},
  4382. "node": {
  4383. "__id__": 142
  4384. },
  4385. "_enabled": true,
  4386. "__prefab": null,
  4387. "enabledContactListener": false,
  4388. "bullet": false,
  4389. "awakeOnLoad": true,
  4390. "_group": 1,
  4391. "_type": 2,
  4392. "_allowSleep": true,
  4393. "_gravityScale": 1,
  4394. "_linearDamping": 0,
  4395. "_angularDamping": 0,
  4396. "_linearVelocity": {
  4397. "__type__": "cc.Vec2",
  4398. "x": 0,
  4399. "y": 0
  4400. },
  4401. "_angularVelocity": 0,
  4402. "_fixedRotation": false,
  4403. "_id": "b8jA3m681EQamNEXdy5iq+"
  4404. },
  4405. {
  4406. "__type__": "cc.Node",
  4407. "_name": "gizmo_9",
  4408. "_objFlags": 0,
  4409. "__editorExtras__": {},
  4410. "_parent": {
  4411. "__id__": 102
  4412. },
  4413. "_children": [],
  4414. "_active": true,
  4415. "_components": [
  4416. {
  4417. "__id__": 143
  4418. },
  4419. {
  4420. "__id__": 144
  4421. },
  4422. {
  4423. "__id__": 145
  4424. },
  4425. {
  4426. "__id__": 146
  4427. },
  4428. {
  4429. "__id__": 141
  4430. },
  4431. {
  4432. "__id__": 147
  4433. },
  4434. {
  4435. "__id__": 171
  4436. }
  4437. ],
  4438. "_prefab": null,
  4439. "_lpos": {
  4440. "__type__": "cc.Vec3",
  4441. "x": 262.42,
  4442. "y": 134.422,
  4443. "z": 0
  4444. },
  4445. "_lrot": {
  4446. "__type__": "cc.Quat",
  4447. "x": 0,
  4448. "y": 0,
  4449. "z": 0.3018371793979931,
  4450. "w": -0.9533594899790234
  4451. },
  4452. "_lscale": {
  4453. "__type__": "cc.Vec3",
  4454. "x": 1,
  4455. "y": 1,
  4456. "z": 1
  4457. },
  4458. "_mobility": 0,
  4459. "_layer": 1073741824,
  4460. "_euler": {
  4461. "__type__": "cc.Vec3",
  4462. "x": 0,
  4463. "y": 0,
  4464. "z": 324.86403631454533
  4465. },
  4466. "_id": "90IxdypxtDh6sYkA6IqZA7"
  4467. },
  4468. {
  4469. "__type__": "cc.UIOpacity",
  4470. "_name": "",
  4471. "_objFlags": 0,
  4472. "__editorExtras__": {},
  4473. "node": {
  4474. "__id__": 142
  4475. },
  4476. "_enabled": true,
  4477. "__prefab": null,
  4478. "_opacity": 255,
  4479. "_id": "14/ak9DKlG35kxUQ4CwAvw"
  4480. },
  4481. {
  4482. "__type__": "cc.UITransform",
  4483. "_name": "",
  4484. "_objFlags": 0,
  4485. "__editorExtras__": {},
  4486. "node": {
  4487. "__id__": 142
  4488. },
  4489. "_enabled": true,
  4490. "__prefab": null,
  4491. "_contentSize": {
  4492. "__type__": "cc.Size",
  4493. "width": 80,
  4494. "height": 80
  4495. },
  4496. "_anchorPoint": {
  4497. "__type__": "cc.Vec2",
  4498. "x": 0.5,
  4499. "y": 0.5
  4500. },
  4501. "_id": "efPUskPhJERLa9u9CNavTi"
  4502. },
  4503. {
  4504. "__type__": "cc.Sprite",
  4505. "_name": "",
  4506. "_objFlags": 0,
  4507. "__editorExtras__": {},
  4508. "node": {
  4509. "__id__": 142
  4510. },
  4511. "_enabled": true,
  4512. "__prefab": null,
  4513. "_customMaterial": null,
  4514. "_srcBlendFactor": 2,
  4515. "_dstBlendFactor": 4,
  4516. "_color": {
  4517. "__type__": "cc.Color",
  4518. "r": 255,
  4519. "g": 156,
  4520. "b": 156,
  4521. "a": 17
  4522. },
  4523. "_spriteFrame": {
  4524. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  4525. "__expectedType__": "cc.SpriteFrame"
  4526. },
  4527. "_type": 0,
  4528. "_fillType": 0,
  4529. "_sizeMode": 0,
  4530. "_fillCenter": {
  4531. "__type__": "cc.Vec2",
  4532. "x": 0,
  4533. "y": 0
  4534. },
  4535. "_fillStart": 0,
  4536. "_fillRange": 0,
  4537. "_isTrimmedMode": true,
  4538. "_useGrayscale": false,
  4539. "_atlas": null,
  4540. "_id": "dfaVAwgUhHtY72Tlg/anSv"
  4541. },
  4542. {
  4543. "__type__": "cc.CircleCollider2D",
  4544. "_name": "",
  4545. "_objFlags": 0,
  4546. "__editorExtras__": {},
  4547. "node": {
  4548. "__id__": 142
  4549. },
  4550. "_enabled": true,
  4551. "__prefab": null,
  4552. "tag": 0,
  4553. "_group": 1,
  4554. "_density": 0.01,
  4555. "_sensor": false,
  4556. "_friction": 0.2,
  4557. "_restitution": 0.1,
  4558. "_offset": {
  4559. "__type__": "cc.Vec2",
  4560. "x": 0,
  4561. "y": 0
  4562. },
  4563. "_radius": 7.1,
  4564. "_id": "a6FynYzbBKIYmVaQmB31pk"
  4565. },
  4566. {
  4567. "__type__": "cc.HingeJoint2D",
  4568. "_name": "",
  4569. "_objFlags": 0,
  4570. "__editorExtras__": {},
  4571. "node": {
  4572. "__id__": 142
  4573. },
  4574. "_enabled": true,
  4575. "__prefab": null,
  4576. "anchor": {
  4577. "__type__": "cc.Vec2",
  4578. "x": 81.8,
  4579. "y": -0.1
  4580. },
  4581. "connectedAnchor": {
  4582. "__type__": "cc.Vec2",
  4583. "x": 0,
  4584. "y": 0
  4585. },
  4586. "collideConnected": false,
  4587. "connectedBody": {
  4588. "__id__": 148
  4589. },
  4590. "_enableLimit": false,
  4591. "_lowerAngle": 0,
  4592. "_upperAngle": 0,
  4593. "_enableMotor": false,
  4594. "_maxMotorTorque": 1000,
  4595. "_motorSpeed": 0,
  4596. "_id": "38puklmA5K36rbieFJzBgA"
  4597. },
  4598. {
  4599. "__type__": "cc.RigidBody2D",
  4600. "_name": "",
  4601. "_objFlags": 0,
  4602. "__editorExtras__": {},
  4603. "node": {
  4604. "__id__": 149
  4605. },
  4606. "_enabled": true,
  4607. "__prefab": null,
  4608. "enabledContactListener": false,
  4609. "bullet": false,
  4610. "awakeOnLoad": true,
  4611. "_group": 1,
  4612. "_type": 2,
  4613. "_allowSleep": true,
  4614. "_gravityScale": 1,
  4615. "_linearDamping": 0,
  4616. "_angularDamping": 0,
  4617. "_linearVelocity": {
  4618. "__type__": "cc.Vec2",
  4619. "x": 0,
  4620. "y": 0
  4621. },
  4622. "_angularVelocity": 0,
  4623. "_fixedRotation": false,
  4624. "_id": "79FieLYJ5OLY/+IBMGVRNI"
  4625. },
  4626. {
  4627. "__type__": "cc.Node",
  4628. "_name": "gizmo_10",
  4629. "_objFlags": 0,
  4630. "__editorExtras__": {},
  4631. "_parent": {
  4632. "__id__": 102
  4633. },
  4634. "_children": [],
  4635. "_active": true,
  4636. "_components": [
  4637. {
  4638. "__id__": 150
  4639. },
  4640. {
  4641. "__id__": 151
  4642. },
  4643. {
  4644. "__id__": 152
  4645. },
  4646. {
  4647. "__id__": 153
  4648. },
  4649. {
  4650. "__id__": 148
  4651. },
  4652. {
  4653. "__id__": 154
  4654. },
  4655. {
  4656. "__id__": 170
  4657. }
  4658. ],
  4659. "_prefab": null,
  4660. "_lpos": {
  4661. "__type__": "cc.Vec3",
  4662. "x": 329.34825,
  4663. "y": 87.3212499999999,
  4664. "z": 0
  4665. },
  4666. "_lrot": {
  4667. "__type__": "cc.Quat",
  4668. "x": 0,
  4669. "y": 0,
  4670. "z": 0.31659621471679167,
  4671. "w": -0.9485604023081499
  4672. },
  4673. "_lscale": {
  4674. "__type__": "cc.Vec3",
  4675. "x": 1,
  4676. "y": 1,
  4677. "z": 1
  4678. },
  4679. "_mobility": 0,
  4680. "_layer": 1073741824,
  4681. "_euler": {
  4682. "__type__": "cc.Vec3",
  4683. "x": 0,
  4684. "y": 0,
  4685. "z": 323.085594513218
  4686. },
  4687. "_id": "e79ITqY6pEi5rhTJ5tldej"
  4688. },
  4689. {
  4690. "__type__": "cc.UIOpacity",
  4691. "_name": "",
  4692. "_objFlags": 0,
  4693. "__editorExtras__": {},
  4694. "node": {
  4695. "__id__": 149
  4696. },
  4697. "_enabled": true,
  4698. "__prefab": null,
  4699. "_opacity": 255,
  4700. "_id": "6001sLKhNMzrfJGUPnc37J"
  4701. },
  4702. {
  4703. "__type__": "cc.UITransform",
  4704. "_name": "",
  4705. "_objFlags": 0,
  4706. "__editorExtras__": {},
  4707. "node": {
  4708. "__id__": 149
  4709. },
  4710. "_enabled": true,
  4711. "__prefab": null,
  4712. "_contentSize": {
  4713. "__type__": "cc.Size",
  4714. "width": 80,
  4715. "height": 80
  4716. },
  4717. "_anchorPoint": {
  4718. "__type__": "cc.Vec2",
  4719. "x": 0.5,
  4720. "y": 0.5
  4721. },
  4722. "_id": "a2zFKSyjJEiopHHfm5zC2W"
  4723. },
  4724. {
  4725. "__type__": "cc.Sprite",
  4726. "_name": "",
  4727. "_objFlags": 0,
  4728. "__editorExtras__": {},
  4729. "node": {
  4730. "__id__": 149
  4731. },
  4732. "_enabled": true,
  4733. "__prefab": null,
  4734. "_customMaterial": null,
  4735. "_srcBlendFactor": 2,
  4736. "_dstBlendFactor": 4,
  4737. "_color": {
  4738. "__type__": "cc.Color",
  4739. "r": 255,
  4740. "g": 156,
  4741. "b": 156,
  4742. "a": 17
  4743. },
  4744. "_spriteFrame": {
  4745. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  4746. "__expectedType__": "cc.SpriteFrame"
  4747. },
  4748. "_type": 0,
  4749. "_fillType": 0,
  4750. "_sizeMode": 0,
  4751. "_fillCenter": {
  4752. "__type__": "cc.Vec2",
  4753. "x": 0,
  4754. "y": 0
  4755. },
  4756. "_fillStart": 0,
  4757. "_fillRange": 0,
  4758. "_isTrimmedMode": true,
  4759. "_useGrayscale": false,
  4760. "_atlas": null,
  4761. "_id": "7cpl0Kgn9AnarTRx5EHSUA"
  4762. },
  4763. {
  4764. "__type__": "cc.CircleCollider2D",
  4765. "_name": "",
  4766. "_objFlags": 0,
  4767. "__editorExtras__": {},
  4768. "node": {
  4769. "__id__": 149
  4770. },
  4771. "_enabled": true,
  4772. "__prefab": null,
  4773. "tag": 0,
  4774. "_group": 1,
  4775. "_density": 0.01,
  4776. "_sensor": false,
  4777. "_friction": 0.2,
  4778. "_restitution": 0.1,
  4779. "_offset": {
  4780. "__type__": "cc.Vec2",
  4781. "x": 0,
  4782. "y": 0
  4783. },
  4784. "_radius": 7.1,
  4785. "_id": "ffmpm5nZVOo4ZM31ZUTtVs"
  4786. },
  4787. {
  4788. "__type__": "cc.HingeJoint2D",
  4789. "_name": "",
  4790. "_objFlags": 0,
  4791. "__editorExtras__": {},
  4792. "node": {
  4793. "__id__": 149
  4794. },
  4795. "_enabled": true,
  4796. "__prefab": null,
  4797. "anchor": {
  4798. "__type__": "cc.Vec2",
  4799. "x": 82.1,
  4800. "y": -0.2
  4801. },
  4802. "connectedAnchor": {
  4803. "__type__": "cc.Vec2",
  4804. "x": 0,
  4805. "y": 0
  4806. },
  4807. "collideConnected": false,
  4808. "connectedBody": {
  4809. "__id__": 155
  4810. },
  4811. "_enableLimit": false,
  4812. "_lowerAngle": 0,
  4813. "_upperAngle": 0,
  4814. "_enableMotor": false,
  4815. "_maxMotorTorque": 1000,
  4816. "_motorSpeed": 0,
  4817. "_id": "642FHZn9dMX562/PwLzK5e"
  4818. },
  4819. {
  4820. "__type__": "cc.RigidBody2D",
  4821. "_name": "",
  4822. "_objFlags": 0,
  4823. "__editorExtras__": {},
  4824. "node": {
  4825. "__id__": 156
  4826. },
  4827. "_enabled": true,
  4828. "__prefab": null,
  4829. "enabledContactListener": false,
  4830. "bullet": false,
  4831. "awakeOnLoad": true,
  4832. "_group": 1,
  4833. "_type": 2,
  4834. "_allowSleep": true,
  4835. "_gravityScale": 1,
  4836. "_linearDamping": 0,
  4837. "_angularDamping": 0,
  4838. "_linearVelocity": {
  4839. "__type__": "cc.Vec2",
  4840. "x": 0,
  4841. "y": 0
  4842. },
  4843. "_angularVelocity": 0,
  4844. "_fixedRotation": false,
  4845. "_id": "d9GAwCGDpBl7P2yShs5y4j"
  4846. },
  4847. {
  4848. "__type__": "cc.Node",
  4849. "_name": "gizmo_11",
  4850. "_objFlags": 0,
  4851. "__editorExtras__": {},
  4852. "_parent": {
  4853. "__id__": 102
  4854. },
  4855. "_children": [],
  4856. "_active": true,
  4857. "_components": [
  4858. {
  4859. "__id__": 157
  4860. },
  4861. {
  4862. "__id__": 158
  4863. },
  4864. {
  4865. "__id__": 159
  4866. },
  4867. {
  4868. "__id__": 160
  4869. },
  4870. {
  4871. "__id__": 155
  4872. },
  4873. {
  4874. "__id__": 161
  4875. },
  4876. {
  4877. "__id__": 169
  4878. }
  4879. ],
  4880. "_prefab": null,
  4881. "_lpos": {
  4882. "__type__": "cc.Vec3",
  4883. "x": 394.7831249999999,
  4884. "y": 38.16562499999998,
  4885. "z": 0
  4886. },
  4887. "_lrot": {
  4888. "__type__": "cc.Quat",
  4889. "x": 0,
  4890. "y": 0,
  4891. "z": 0.3215536615769316,
  4892. "w": -0.9468913574040414
  4893. },
  4894. "_lscale": {
  4895. "__type__": "cc.Vec3",
  4896. "x": 1,
  4897. "y": 1,
  4898. "z": 1
  4899. },
  4900. "_mobility": 0,
  4901. "_layer": 1073741824,
  4902. "_euler": {
  4903. "__type__": "cc.Vec3",
  4904. "x": 0,
  4905. "y": 0,
  4906. "z": 322.4861803986057
  4907. },
  4908. "_id": "01JsCB/1dF4K6Y1fN+fGN2"
  4909. },
  4910. {
  4911. "__type__": "cc.UIOpacity",
  4912. "_name": "",
  4913. "_objFlags": 0,
  4914. "__editorExtras__": {},
  4915. "node": {
  4916. "__id__": 156
  4917. },
  4918. "_enabled": true,
  4919. "__prefab": null,
  4920. "_opacity": 255,
  4921. "_id": "3b8mLH6StHeqk/ao7PKRwV"
  4922. },
  4923. {
  4924. "__type__": "cc.UITransform",
  4925. "_name": "",
  4926. "_objFlags": 0,
  4927. "__editorExtras__": {},
  4928. "node": {
  4929. "__id__": 156
  4930. },
  4931. "_enabled": true,
  4932. "__prefab": null,
  4933. "_contentSize": {
  4934. "__type__": "cc.Size",
  4935. "width": 80,
  4936. "height": 80
  4937. },
  4938. "_anchorPoint": {
  4939. "__type__": "cc.Vec2",
  4940. "x": 0.5,
  4941. "y": 0.5
  4942. },
  4943. "_id": "83fQHHn/dDdINxPuldXTR9"
  4944. },
  4945. {
  4946. "__type__": "cc.Sprite",
  4947. "_name": "",
  4948. "_objFlags": 0,
  4949. "__editorExtras__": {},
  4950. "node": {
  4951. "__id__": 156
  4952. },
  4953. "_enabled": true,
  4954. "__prefab": null,
  4955. "_customMaterial": null,
  4956. "_srcBlendFactor": 2,
  4957. "_dstBlendFactor": 4,
  4958. "_color": {
  4959. "__type__": "cc.Color",
  4960. "r": 255,
  4961. "g": 156,
  4962. "b": 156,
  4963. "a": 17
  4964. },
  4965. "_spriteFrame": {
  4966. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  4967. "__expectedType__": "cc.SpriteFrame"
  4968. },
  4969. "_type": 0,
  4970. "_fillType": 0,
  4971. "_sizeMode": 0,
  4972. "_fillCenter": {
  4973. "__type__": "cc.Vec2",
  4974. "x": 0,
  4975. "y": 0
  4976. },
  4977. "_fillStart": 0,
  4978. "_fillRange": 0,
  4979. "_isTrimmedMode": true,
  4980. "_useGrayscale": false,
  4981. "_atlas": null,
  4982. "_id": "a4v82ugCFJWIi4q650P9Kp"
  4983. },
  4984. {
  4985. "__type__": "cc.CircleCollider2D",
  4986. "_name": "",
  4987. "_objFlags": 0,
  4988. "__editorExtras__": {},
  4989. "node": {
  4990. "__id__": 156
  4991. },
  4992. "_enabled": true,
  4993. "__prefab": null,
  4994. "tag": 0,
  4995. "_group": 1,
  4996. "_density": 0.01,
  4997. "_sensor": false,
  4998. "_friction": 0.2,
  4999. "_restitution": 0.1,
  5000. "_offset": {
  5001. "__type__": "cc.Vec2",
  5002. "x": 0,
  5003. "y": 0
  5004. },
  5005. "_radius": 7.1,
  5006. "_id": "dfeAeFiipLBYyf6m3aZmOU"
  5007. },
  5008. {
  5009. "__type__": "cc.HingeJoint2D",
  5010. "_name": "",
  5011. "_objFlags": 0,
  5012. "__editorExtras__": {},
  5013. "node": {
  5014. "__id__": 156
  5015. },
  5016. "_enabled": true,
  5017. "__prefab": null,
  5018. "anchor": {
  5019. "__type__": "cc.Vec2",
  5020. "x": 80.6,
  5021. "y": 0.4
  5022. },
  5023. "connectedAnchor": {
  5024. "__type__": "cc.Vec2",
  5025. "x": 0,
  5026. "y": 0
  5027. },
  5028. "collideConnected": false,
  5029. "connectedBody": {
  5030. "__id__": 162
  5031. },
  5032. "_enableLimit": false,
  5033. "_lowerAngle": 0,
  5034. "_upperAngle": 0,
  5035. "_enableMotor": false,
  5036. "_maxMotorTorque": 1000,
  5037. "_motorSpeed": 0,
  5038. "_id": "7crAt8wHZITL8yGdA7S9uS"
  5039. },
  5040. {
  5041. "__type__": "cc.RigidBody2D",
  5042. "_name": "",
  5043. "_objFlags": 0,
  5044. "__editorExtras__": {},
  5045. "node": {
  5046. "__id__": 163
  5047. },
  5048. "_enabled": true,
  5049. "__prefab": null,
  5050. "enabledContactListener": false,
  5051. "bullet": false,
  5052. "awakeOnLoad": true,
  5053. "_group": 1,
  5054. "_type": 2,
  5055. "_allowSleep": true,
  5056. "_gravityScale": 1,
  5057. "_linearDamping": 0,
  5058. "_angularDamping": 0,
  5059. "_linearVelocity": {
  5060. "__type__": "cc.Vec2",
  5061. "x": 0,
  5062. "y": 0
  5063. },
  5064. "_angularVelocity": 0,
  5065. "_fixedRotation": false,
  5066. "_id": "b7FQOqpMJDgoanZBl6MHUt"
  5067. },
  5068. {
  5069. "__type__": "cc.Node",
  5070. "_name": "gizmo_4",
  5071. "_objFlags": 0,
  5072. "__editorExtras__": {},
  5073. "_parent": {
  5074. "__id__": 102
  5075. },
  5076. "_children": [],
  5077. "_active": true,
  5078. "_components": [
  5079. {
  5080. "__id__": 164
  5081. },
  5082. {
  5083. "__id__": 165
  5084. },
  5085. {
  5086. "__id__": 166
  5087. },
  5088. {
  5089. "__id__": 167
  5090. },
  5091. {
  5092. "__id__": 162
  5093. },
  5094. {
  5095. "__id__": 168
  5096. }
  5097. ],
  5098. "_prefab": null,
  5099. "_lpos": {
  5100. "__type__": "cc.Vec3",
  5101. "x": 458.812,
  5102. "y": -10.99,
  5103. "z": 0
  5104. },
  5105. "_lrot": {
  5106. "__type__": "cc.Quat",
  5107. "x": 0,
  5108. "y": 0,
  5109. "z": 0,
  5110. "w": 1
  5111. },
  5112. "_lscale": {
  5113. "__type__": "cc.Vec3",
  5114. "x": 1,
  5115. "y": 1,
  5116. "z": 1
  5117. },
  5118. "_mobility": 0,
  5119. "_layer": 1073741824,
  5120. "_euler": {
  5121. "__type__": "cc.Vec3",
  5122. "x": 0,
  5123. "y": 0,
  5124. "z": 0
  5125. },
  5126. "_id": "5bqc6cxr9GHrvqL7sJ40sF"
  5127. },
  5128. {
  5129. "__type__": "cc.UIOpacity",
  5130. "_name": "",
  5131. "_objFlags": 0,
  5132. "__editorExtras__": {},
  5133. "node": {
  5134. "__id__": 163
  5135. },
  5136. "_enabled": true,
  5137. "__prefab": null,
  5138. "_opacity": 255,
  5139. "_id": "4879ZBi3dKxotaG2Mw2w+I"
  5140. },
  5141. {
  5142. "__type__": "cc.UITransform",
  5143. "_name": "",
  5144. "_objFlags": 0,
  5145. "__editorExtras__": {},
  5146. "node": {
  5147. "__id__": 163
  5148. },
  5149. "_enabled": true,
  5150. "__prefab": null,
  5151. "_contentSize": {
  5152. "__type__": "cc.Size",
  5153. "width": 80,
  5154. "height": 80
  5155. },
  5156. "_anchorPoint": {
  5157. "__type__": "cc.Vec2",
  5158. "x": 0.5,
  5159. "y": 0.5
  5160. },
  5161. "_id": "eedM/swetAAYXgtBbYqvW5"
  5162. },
  5163. {
  5164. "__type__": "cc.Sprite",
  5165. "_name": "",
  5166. "_objFlags": 0,
  5167. "__editorExtras__": {},
  5168. "node": {
  5169. "__id__": 163
  5170. },
  5171. "_enabled": true,
  5172. "__prefab": null,
  5173. "_customMaterial": null,
  5174. "_srcBlendFactor": 2,
  5175. "_dstBlendFactor": 4,
  5176. "_color": {
  5177. "__type__": "cc.Color",
  5178. "r": 255,
  5179. "g": 156,
  5180. "b": 156,
  5181. "a": 17
  5182. },
  5183. "_spriteFrame": {
  5184. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  5185. "__expectedType__": "cc.SpriteFrame"
  5186. },
  5187. "_type": 0,
  5188. "_fillType": 0,
  5189. "_sizeMode": 0,
  5190. "_fillCenter": {
  5191. "__type__": "cc.Vec2",
  5192. "x": 0,
  5193. "y": 0
  5194. },
  5195. "_fillStart": 0,
  5196. "_fillRange": 0,
  5197. "_isTrimmedMode": true,
  5198. "_useGrayscale": false,
  5199. "_atlas": null,
  5200. "_id": "7b3td+2klH9LfzJA92XRoZ"
  5201. },
  5202. {
  5203. "__type__": "cc.CircleCollider2D",
  5204. "_name": "",
  5205. "_objFlags": 0,
  5206. "__editorExtras__": {},
  5207. "node": {
  5208. "__id__": 163
  5209. },
  5210. "_enabled": true,
  5211. "__prefab": null,
  5212. "tag": 0,
  5213. "_group": 1,
  5214. "_density": 0.01,
  5215. "_sensor": false,
  5216. "_friction": 0.2,
  5217. "_restitution": 0.1,
  5218. "_offset": {
  5219. "__type__": "cc.Vec2",
  5220. "x": 0,
  5221. "y": 0
  5222. },
  5223. "_radius": 7.1,
  5224. "_id": "60RebyE6RLIYLu3QPOqLzJ"
  5225. },
  5226. {
  5227. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5228. "_name": "",
  5229. "_objFlags": 0,
  5230. "__editorExtras__": {},
  5231. "node": {
  5232. "__id__": 163
  5233. },
  5234. "_enabled": true,
  5235. "__prefab": null,
  5236. "_id": "17zPOaKQRHDpD2YzZiWYsX"
  5237. },
  5238. {
  5239. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5240. "_name": "",
  5241. "_objFlags": 0,
  5242. "__editorExtras__": {},
  5243. "node": {
  5244. "__id__": 156
  5245. },
  5246. "_enabled": true,
  5247. "__prefab": null,
  5248. "_id": "9dEbA/yMFJFIxB8paeThq2"
  5249. },
  5250. {
  5251. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5252. "_name": "",
  5253. "_objFlags": 0,
  5254. "__editorExtras__": {},
  5255. "node": {
  5256. "__id__": 149
  5257. },
  5258. "_enabled": true,
  5259. "__prefab": null,
  5260. "_id": "981mM1QidL2olfyb31mqrb"
  5261. },
  5262. {
  5263. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5264. "_name": "",
  5265. "_objFlags": 0,
  5266. "__editorExtras__": {},
  5267. "node": {
  5268. "__id__": 142
  5269. },
  5270. "_enabled": true,
  5271. "__prefab": null,
  5272. "_id": "1bZb3dZNZB4LcuTtEsGBxm"
  5273. },
  5274. {
  5275. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5276. "_name": "",
  5277. "_objFlags": 0,
  5278. "__editorExtras__": {},
  5279. "node": {
  5280. "__id__": 135
  5281. },
  5282. "_enabled": true,
  5283. "__prefab": null,
  5284. "_id": "472WWYXuFKzrsOGoMK/T9Q"
  5285. },
  5286. {
  5287. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5288. "_name": "",
  5289. "_objFlags": 0,
  5290. "__editorExtras__": {},
  5291. "node": {
  5292. "__id__": 128
  5293. },
  5294. "_enabled": true,
  5295. "__prefab": null,
  5296. "_id": "4cw8kl0MJJzL5Qgb4iFX9C"
  5297. },
  5298. {
  5299. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5300. "_name": "",
  5301. "_objFlags": 0,
  5302. "__editorExtras__": {},
  5303. "node": {
  5304. "__id__": 121
  5305. },
  5306. "_enabled": true,
  5307. "__prefab": null,
  5308. "_id": "95+pdoHRNHmrD5Vwx3+7Fb"
  5309. },
  5310. {
  5311. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5312. "_name": "",
  5313. "_objFlags": 0,
  5314. "__editorExtras__": {},
  5315. "node": {
  5316. "__id__": 113
  5317. },
  5318. "_enabled": true,
  5319. "__prefab": null,
  5320. "_id": "32+zcq/BtP2JSD1R90zy0h"
  5321. },
  5322. {
  5323. "__type__": "cc.UITransform",
  5324. "_name": "",
  5325. "_objFlags": 0,
  5326. "__editorExtras__": {},
  5327. "node": {
  5328. "__id__": 102
  5329. },
  5330. "_enabled": true,
  5331. "__prefab": null,
  5332. "_contentSize": {
  5333. "__type__": "cc.Size",
  5334. "width": 100,
  5335. "height": 100
  5336. },
  5337. "_anchorPoint": {
  5338. "__type__": "cc.Vec2",
  5339. "x": 0.5,
  5340. "y": 0.5
  5341. },
  5342. "_id": "63DrzH6+pGK4KLlWo2gXLS"
  5343. },
  5344. {
  5345. "__type__": "cc.MeshRenderer",
  5346. "_name": "",
  5347. "_objFlags": 0,
  5348. "__editorExtras__": {},
  5349. "node": {
  5350. "__id__": 102
  5351. },
  5352. "_enabled": true,
  5353. "__prefab": null,
  5354. "_materials": [
  5355. null
  5356. ],
  5357. "_visFlags": 0,
  5358. "bakeSettings": {
  5359. "__id__": 178
  5360. },
  5361. "_mesh": null,
  5362. "_shadowCastingMode": 0,
  5363. "_shadowReceivingMode": 1,
  5364. "_shadowBias": 0,
  5365. "_shadowNormalBias": 0,
  5366. "_reflectionProbeId": -1,
  5367. "_reflectionProbeBlendId": -1,
  5368. "_reflectionProbeBlendWeight": 0,
  5369. "_enabledGlobalStandardSkinObject": false,
  5370. "_enableMorph": true,
  5371. "_id": "e3qXaHQt5O040d+SJHh2n5"
  5372. },
  5373. {
  5374. "__type__": "cc.ModelBakeSettings",
  5375. "texture": null,
  5376. "uvParam": {
  5377. "__type__": "cc.Vec4",
  5378. "x": 0,
  5379. "y": 0,
  5380. "z": 0,
  5381. "w": 0
  5382. },
  5383. "_bakeable": false,
  5384. "_castShadow": false,
  5385. "_receiveShadow": false,
  5386. "_recieveShadow": false,
  5387. "_lightmapSize": 64,
  5388. "_useLightProbe": false,
  5389. "_bakeToLightProbe": true,
  5390. "_reflectionProbeType": 0,
  5391. "_bakeToReflectionProbe": true
  5392. },
  5393. {
  5394. "__type__": "5895dAXMtRB5Y5LDDX4xP8/",
  5395. "_name": "",
  5396. "_objFlags": 0,
  5397. "__editorExtras__": {},
  5398. "node": {
  5399. "__id__": 102
  5400. },
  5401. "_enabled": true,
  5402. "__prefab": null,
  5403. "_syncOnOff": false,
  5404. "_syncTarget": null,
  5405. "_renderMode": 2,
  5406. "_renderUVMode": 1,
  5407. "_spEffectAsset": {
  5408. "__uuid__": "6678422c-a9af-4d38-ab8b-535c51697f2e",
  5409. "__expectedType__": "cc.EffectAsset"
  5410. },
  5411. "_spFrame": {
  5412. "__uuid__": "19db207e-6b19-442d-b66a-3e785b48032d@f9941",
  5413. "__expectedType__": "cc.SpriteFrame"
  5414. },
  5415. "_headTailFixedOnOff": true,
  5416. "_headTailFrame": {
  5417. "__uuid__": "c6a62d19-46f0-4db5-b2a9-7552a8896489@f9941",
  5418. "__expectedType__": "cc.SpriteFrame"
  5419. },
  5420. "_updownFix": false,
  5421. "_thickness": 0,
  5422. "_offset": {
  5423. "__type__": "cc.Vec3",
  5424. "x": 0,
  5425. "y": 0,
  5426. "z": 0
  5427. },
  5428. "_smoothness": 16,
  5429. "_headTailCloseOnoff": false,
  5430. "_innerMeshSprite": null,
  5431. "_physcisOnOff": false,
  5432. "_physicsThickness": 0,
  5433. "_offsetCollider": {
  5434. "__type__": "cc.Vec3",
  5435. "x": 0,
  5436. "y": 0,
  5437. "z": 0
  5438. },
  5439. "_visibleOnOff": true,
  5440. "_sortInXDirection": false,
  5441. "_editWhenRun": true,
  5442. "_gizmotag": {
  5443. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  5444. "__expectedType__": "cc.SpriteFrame"
  5445. },
  5446. "_gizmoColor": {
  5447. "__type__": "cc.Color",
  5448. "r": 255,
  5449. "g": 156,
  5450. "b": 156,
  5451. "a": 17
  5452. },
  5453. "_id": "b20eze3PhJc7URxQmefvXj"
  5454. },
  5455. {
  5456. "__type__": "cc.UIMeshRenderer",
  5457. "_name": "",
  5458. "_objFlags": 0,
  5459. "__editorExtras__": {},
  5460. "node": {
  5461. "__id__": 102
  5462. },
  5463. "_enabled": true,
  5464. "__prefab": null,
  5465. "_id": "f6w3E3SkRBfrVQn57P2Ad7"
  5466. },
  5467. {
  5468. "__type__": "cc.UIOpacity",
  5469. "_name": "",
  5470. "_objFlags": 0,
  5471. "__editorExtras__": {},
  5472. "node": {
  5473. "__id__": 101
  5474. },
  5475. "_enabled": true,
  5476. "__prefab": null,
  5477. "_opacity": 255,
  5478. "_id": "1bL8nR+2lAyJblFzHXLNyw"
  5479. },
  5480. {
  5481. "__type__": "cc.UITransform",
  5482. "_name": "",
  5483. "_objFlags": 0,
  5484. "__editorExtras__": {},
  5485. "node": {
  5486. "__id__": 101
  5487. },
  5488. "_enabled": true,
  5489. "__prefab": null,
  5490. "_contentSize": {
  5491. "__type__": "cc.Size",
  5492. "width": 80,
  5493. "height": 80
  5494. },
  5495. "_anchorPoint": {
  5496. "__type__": "cc.Vec2",
  5497. "x": 0.5,
  5498. "y": 0.5
  5499. },
  5500. "_id": "8f1KV+4W1CTa6Lc0dtcclm"
  5501. },
  5502. {
  5503. "__type__": "cc.Sprite",
  5504. "_name": "",
  5505. "_objFlags": 0,
  5506. "__editorExtras__": {},
  5507. "node": {
  5508. "__id__": 101
  5509. },
  5510. "_enabled": true,
  5511. "__prefab": null,
  5512. "_customMaterial": null,
  5513. "_srcBlendFactor": 2,
  5514. "_dstBlendFactor": 4,
  5515. "_color": {
  5516. "__type__": "cc.Color",
  5517. "r": 255,
  5518. "g": 156,
  5519. "b": 156,
  5520. "a": 17
  5521. },
  5522. "_spriteFrame": {
  5523. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  5524. "__expectedType__": "cc.SpriteFrame"
  5525. },
  5526. "_type": 0,
  5527. "_fillType": 0,
  5528. "_sizeMode": 0,
  5529. "_fillCenter": {
  5530. "__type__": "cc.Vec2",
  5531. "x": 0,
  5532. "y": 0
  5533. },
  5534. "_fillStart": 0,
  5535. "_fillRange": 0,
  5536. "_isTrimmedMode": true,
  5537. "_useGrayscale": false,
  5538. "_atlas": null,
  5539. "_id": "57Uq1vdnRMupWw3KS9p3P6"
  5540. },
  5541. {
  5542. "__type__": "cc.CircleCollider2D",
  5543. "_name": "",
  5544. "_objFlags": 0,
  5545. "__editorExtras__": {},
  5546. "node": {
  5547. "__id__": 101
  5548. },
  5549. "_enabled": true,
  5550. "__prefab": null,
  5551. "tag": 0,
  5552. "_group": 1,
  5553. "_density": 0.01,
  5554. "_sensor": false,
  5555. "_friction": 0.2,
  5556. "_restitution": 0.1,
  5557. "_offset": {
  5558. "__type__": "cc.Vec2",
  5559. "x": 0,
  5560. "y": 0
  5561. },
  5562. "_radius": 7.1,
  5563. "_id": "92MYWR2TZKLK1lvJYCJez2"
  5564. },
  5565. {
  5566. "__type__": "cc.HingeJoint2D",
  5567. "_name": "",
  5568. "_objFlags": 0,
  5569. "__editorExtras__": {},
  5570. "node": {
  5571. "__id__": 101
  5572. },
  5573. "_enabled": true,
  5574. "__prefab": null,
  5575. "anchor": {
  5576. "__type__": "cc.Vec2",
  5577. "x": 81.7,
  5578. "y": 0.4
  5579. },
  5580. "connectedAnchor": {
  5581. "__type__": "cc.Vec2",
  5582. "x": 0,
  5583. "y": 0
  5584. },
  5585. "collideConnected": false,
  5586. "connectedBody": {
  5587. "__id__": 118
  5588. },
  5589. "_enableLimit": false,
  5590. "_lowerAngle": 0,
  5591. "_upperAngle": 0,
  5592. "_enableMotor": false,
  5593. "_maxMotorTorque": 1000,
  5594. "_motorSpeed": 0,
  5595. "_id": "f7dsJ8aINKf5NY2e0POdnc"
  5596. },
  5597. {
  5598. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5599. "_name": "",
  5600. "_objFlags": 0,
  5601. "__editorExtras__": {},
  5602. "node": {
  5603. "__id__": 101
  5604. },
  5605. "_enabled": true,
  5606. "__prefab": null,
  5607. "_id": "5d0cTa5G1By5wsXx1pDPlr"
  5608. },
  5609. {
  5610. "__type__": "cc.Node",
  5611. "_name": "floorstatic",
  5612. "_objFlags": 0,
  5613. "__editorExtras__": {},
  5614. "_parent": {
  5615. "__id__": 2
  5616. },
  5617. "_children": [],
  5618. "_active": true,
  5619. "_components": [
  5620. {
  5621. "__id__": 188
  5622. },
  5623. {
  5624. "__id__": 189
  5625. },
  5626. {
  5627. "__id__": 190
  5628. },
  5629. {
  5630. "__id__": 191
  5631. },
  5632. {
  5633. "__id__": 192
  5634. }
  5635. ],
  5636. "_prefab": null,
  5637. "_lpos": {
  5638. "__type__": "cc.Vec3",
  5639. "x": 17.583,
  5640. "y": -389.277,
  5641. "z": 0
  5642. },
  5643. "_lrot": {
  5644. "__type__": "cc.Quat",
  5645. "x": 0,
  5646. "y": 0,
  5647. "z": 0,
  5648. "w": 1
  5649. },
  5650. "_lscale": {
  5651. "__type__": "cc.Vec3",
  5652. "x": 1,
  5653. "y": 1,
  5654. "z": 1
  5655. },
  5656. "_mobility": 0,
  5657. "_layer": 33554432,
  5658. "_euler": {
  5659. "__type__": "cc.Vec3",
  5660. "x": 0,
  5661. "y": 0,
  5662. "z": 0
  5663. },
  5664. "_id": "56CCWo0upHtYVCIiYWLako"
  5665. },
  5666. {
  5667. "__type__": "cc.UITransform",
  5668. "_name": "",
  5669. "_objFlags": 0,
  5670. "__editorExtras__": {},
  5671. "node": {
  5672. "__id__": 187
  5673. },
  5674. "_enabled": true,
  5675. "__prefab": null,
  5676. "_contentSize": {
  5677. "__type__": "cc.Size",
  5678. "width": 3951.0879999999997,
  5679. "height": 68.267
  5680. },
  5681. "_anchorPoint": {
  5682. "__type__": "cc.Vec2",
  5683. "x": 0.5,
  5684. "y": 0.5
  5685. },
  5686. "_id": "dfr0tYX55ImYcreSqVXz2o"
  5687. },
  5688. {
  5689. "__type__": "cc.Sprite",
  5690. "_name": "",
  5691. "_objFlags": 0,
  5692. "__editorExtras__": {},
  5693. "node": {
  5694. "__id__": 187
  5695. },
  5696. "_enabled": true,
  5697. "__prefab": null,
  5698. "_customMaterial": null,
  5699. "_srcBlendFactor": 2,
  5700. "_dstBlendFactor": 4,
  5701. "_color": {
  5702. "__type__": "cc.Color",
  5703. "r": 95,
  5704. "g": 87,
  5705. "b": 79,
  5706. "a": 255
  5707. },
  5708. "_spriteFrame": {
  5709. "__uuid__": "a38566f6-6dc6-4693-bb98-44481e42d5f1@f9941",
  5710. "__expectedType__": "cc.SpriteFrame"
  5711. },
  5712. "_type": 1,
  5713. "_fillType": 0,
  5714. "_sizeMode": 0,
  5715. "_fillCenter": {
  5716. "__type__": "cc.Vec2",
  5717. "x": 0,
  5718. "y": 0
  5719. },
  5720. "_fillStart": 0,
  5721. "_fillRange": 0,
  5722. "_isTrimmedMode": true,
  5723. "_useGrayscale": false,
  5724. "_atlas": null,
  5725. "_id": "6cJYMz8A9AlIK97a+FQsNF"
  5726. },
  5727. {
  5728. "__type__": "cc.RigidBody2D",
  5729. "_name": "",
  5730. "_objFlags": 0,
  5731. "__editorExtras__": {},
  5732. "node": {
  5733. "__id__": 187
  5734. },
  5735. "_enabled": true,
  5736. "__prefab": null,
  5737. "enabledContactListener": false,
  5738. "bullet": false,
  5739. "awakeOnLoad": true,
  5740. "_group": 1,
  5741. "_type": 0,
  5742. "_allowSleep": true,
  5743. "_gravityScale": 1,
  5744. "_linearDamping": 0,
  5745. "_angularDamping": 0,
  5746. "_linearVelocity": {
  5747. "__type__": "cc.Vec2",
  5748. "x": 0,
  5749. "y": 0
  5750. },
  5751. "_angularVelocity": 0,
  5752. "_fixedRotation": false,
  5753. "_id": "fbISSz681KF4kcI5n7K0bx"
  5754. },
  5755. {
  5756. "__type__": "cc.UIOpacity",
  5757. "_name": "",
  5758. "_objFlags": 0,
  5759. "__editorExtras__": {},
  5760. "node": {
  5761. "__id__": 187
  5762. },
  5763. "_enabled": true,
  5764. "__prefab": null,
  5765. "_opacity": 255,
  5766. "_id": "d0LnNnWEhMMroh+gfa2ZuE"
  5767. },
  5768. {
  5769. "__type__": "cc.BoxCollider2D",
  5770. "_name": "",
  5771. "_objFlags": 0,
  5772. "__editorExtras__": {},
  5773. "node": {
  5774. "__id__": 187
  5775. },
  5776. "_enabled": true,
  5777. "__prefab": null,
  5778. "tag": 0,
  5779. "_group": 1,
  5780. "_density": 1,
  5781. "_sensor": false,
  5782. "_friction": 0.2,
  5783. "_restitution": 0,
  5784. "_offset": {
  5785. "__type__": "cc.Vec2",
  5786. "x": 0,
  5787. "y": 0
  5788. },
  5789. "_size": {
  5790. "__type__": "cc.Size",
  5791. "width": 3951.0879999999997,
  5792. "height": 68.267
  5793. },
  5794. "_id": "afImkAMgZAT7WzIvd3r/PV"
  5795. },
  5796. {
  5797. "__type__": "cc.Node",
  5798. "_name": "ballstatic",
  5799. "_objFlags": 0,
  5800. "__editorExtras__": {},
  5801. "_parent": {
  5802. "__id__": 2
  5803. },
  5804. "_children": [],
  5805. "_active": true,
  5806. "_components": [
  5807. {
  5808. "__id__": 194
  5809. },
  5810. {
  5811. "__id__": 195
  5812. },
  5813. {
  5814. "__id__": 196
  5815. },
  5816. {
  5817. "__id__": 197
  5818. },
  5819. {
  5820. "__id__": 198
  5821. }
  5822. ],
  5823. "_prefab": null,
  5824. "_lpos": {
  5825. "__type__": "cc.Vec3",
  5826. "x": 405.977,
  5827. "y": 116.441,
  5828. "z": 0
  5829. },
  5830. "_lrot": {
  5831. "__type__": "cc.Quat",
  5832. "x": 0,
  5833. "y": 0,
  5834. "z": 0,
  5835. "w": 1
  5836. },
  5837. "_lscale": {
  5838. "__type__": "cc.Vec3",
  5839. "x": 1,
  5840. "y": 1,
  5841. "z": 1
  5842. },
  5843. "_mobility": 0,
  5844. "_layer": 33554432,
  5845. "_euler": {
  5846. "__type__": "cc.Vec3",
  5847. "x": 0,
  5848. "y": 0,
  5849. "z": 0
  5850. },
  5851. "_id": "e7SH+J1JNLpZtL6d9E1m5k"
  5852. },
  5853. {
  5854. "__type__": "cc.UITransform",
  5855. "_name": "",
  5856. "_objFlags": 0,
  5857. "__editorExtras__": {},
  5858. "node": {
  5859. "__id__": 193
  5860. },
  5861. "_enabled": true,
  5862. "__prefab": null,
  5863. "_contentSize": {
  5864. "__type__": "cc.Size",
  5865. "width": 50,
  5866. "height": 50
  5867. },
  5868. "_anchorPoint": {
  5869. "__type__": "cc.Vec2",
  5870. "x": 0.5,
  5871. "y": 0.5
  5872. },
  5873. "_id": "a37HWKfrdLoY7dU2r55Yqr"
  5874. },
  5875. {
  5876. "__type__": "cc.Sprite",
  5877. "_name": "",
  5878. "_objFlags": 0,
  5879. "__editorExtras__": {},
  5880. "node": {
  5881. "__id__": 193
  5882. },
  5883. "_enabled": true,
  5884. "__prefab": null,
  5885. "_customMaterial": null,
  5886. "_srcBlendFactor": 2,
  5887. "_dstBlendFactor": 4,
  5888. "_color": {
  5889. "__type__": "cc.Color",
  5890. "r": 109,
  5891. "g": 109,
  5892. "b": 109,
  5893. "a": 255
  5894. },
  5895. "_spriteFrame": {
  5896. "__uuid__": "1cdf4d11-e65b-412d-991c-2cd428d2033a@f9941",
  5897. "__expectedType__": "cc.SpriteFrame"
  5898. },
  5899. "_type": 0,
  5900. "_fillType": 0,
  5901. "_sizeMode": 0,
  5902. "_fillCenter": {
  5903. "__type__": "cc.Vec2",
  5904. "x": 0,
  5905. "y": 0
  5906. },
  5907. "_fillStart": 0,
  5908. "_fillRange": 0,
  5909. "_isTrimmedMode": true,
  5910. "_useGrayscale": false,
  5911. "_atlas": null,
  5912. "_id": "f9cRf0dEtIQrDBzeQZh8es"
  5913. },
  5914. {
  5915. "__type__": "cc.RigidBody2D",
  5916. "_name": "",
  5917. "_objFlags": 0,
  5918. "__editorExtras__": {},
  5919. "node": {
  5920. "__id__": 193
  5921. },
  5922. "_enabled": true,
  5923. "__prefab": null,
  5924. "enabledContactListener": false,
  5925. "bullet": false,
  5926. "awakeOnLoad": true,
  5927. "_group": 1,
  5928. "_type": 1,
  5929. "_allowSleep": true,
  5930. "_gravityScale": 1,
  5931. "_linearDamping": 0,
  5932. "_angularDamping": 0,
  5933. "_linearVelocity": {
  5934. "__type__": "cc.Vec2",
  5935. "x": 0,
  5936. "y": 0
  5937. },
  5938. "_angularVelocity": 0,
  5939. "_fixedRotation": false,
  5940. "_id": "73ZHMSenJD+L0yIuxkyfWq"
  5941. },
  5942. {
  5943. "__type__": "cc.CircleCollider2D",
  5944. "_name": "",
  5945. "_objFlags": 0,
  5946. "__editorExtras__": {},
  5947. "node": {
  5948. "__id__": 193
  5949. },
  5950. "_enabled": true,
  5951. "__prefab": null,
  5952. "tag": 0,
  5953. "_group": 1,
  5954. "_density": 1,
  5955. "_sensor": false,
  5956. "_friction": 0.2,
  5957. "_restitution": 0,
  5958. "_offset": {
  5959. "__type__": "cc.Vec2",
  5960. "x": 0,
  5961. "y": 0
  5962. },
  5963. "_radius": 24,
  5964. "_id": "eckOW5jdRIC5U3qcioxxQL"
  5965. },
  5966. {
  5967. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  5968. "_name": "",
  5969. "_objFlags": 0,
  5970. "__editorExtras__": {},
  5971. "node": {
  5972. "__id__": 193
  5973. },
  5974. "_enabled": true,
  5975. "__prefab": null,
  5976. "_id": "08if3E9qpCE6jet9ta+KMn"
  5977. },
  5978. {
  5979. "__type__": "cc.Node",
  5980. "_name": "ballstatic-001",
  5981. "_objFlags": 0,
  5982. "__editorExtras__": {},
  5983. "_parent": {
  5984. "__id__": 2
  5985. },
  5986. "_children": [],
  5987. "_active": true,
  5988. "_components": [
  5989. {
  5990. "__id__": 200
  5991. },
  5992. {
  5993. "__id__": 201
  5994. },
  5995. {
  5996. "__id__": 202
  5997. },
  5998. {
  5999. "__id__": 203
  6000. },
  6001. {
  6002. "__id__": 204
  6003. }
  6004. ],
  6005. "_prefab": null,
  6006. "_lpos": {
  6007. "__type__": "cc.Vec3",
  6008. "x": -48.628,
  6009. "y": 44.124,
  6010. "z": 0
  6011. },
  6012. "_lrot": {
  6013. "__type__": "cc.Quat",
  6014. "x": 0,
  6015. "y": 0,
  6016. "z": 0,
  6017. "w": 1
  6018. },
  6019. "_lscale": {
  6020. "__type__": "cc.Vec3",
  6021. "x": 1,
  6022. "y": 1,
  6023. "z": 1
  6024. },
  6025. "_mobility": 0,
  6026. "_layer": 33554432,
  6027. "_euler": {
  6028. "__type__": "cc.Vec3",
  6029. "x": 0,
  6030. "y": 0,
  6031. "z": 0
  6032. },
  6033. "_id": "26j3FQtW5L36H0o8t5d0+R"
  6034. },
  6035. {
  6036. "__type__": "cc.UITransform",
  6037. "_name": "",
  6038. "_objFlags": 0,
  6039. "__editorExtras__": {},
  6040. "node": {
  6041. "__id__": 199
  6042. },
  6043. "_enabled": true,
  6044. "__prefab": null,
  6045. "_contentSize": {
  6046. "__type__": "cc.Size",
  6047. "width": 50,
  6048. "height": 50
  6049. },
  6050. "_anchorPoint": {
  6051. "__type__": "cc.Vec2",
  6052. "x": 0.5,
  6053. "y": 0.5
  6054. },
  6055. "_id": "fflcIKkZVFpYsSyz/Rt8hM"
  6056. },
  6057. {
  6058. "__type__": "cc.Sprite",
  6059. "_name": "",
  6060. "_objFlags": 0,
  6061. "__editorExtras__": {},
  6062. "node": {
  6063. "__id__": 199
  6064. },
  6065. "_enabled": true,
  6066. "__prefab": null,
  6067. "_customMaterial": null,
  6068. "_srcBlendFactor": 2,
  6069. "_dstBlendFactor": 4,
  6070. "_color": {
  6071. "__type__": "cc.Color",
  6072. "r": 109,
  6073. "g": 109,
  6074. "b": 109,
  6075. "a": 255
  6076. },
  6077. "_spriteFrame": {
  6078. "__uuid__": "1cdf4d11-e65b-412d-991c-2cd428d2033a@f9941",
  6079. "__expectedType__": "cc.SpriteFrame"
  6080. },
  6081. "_type": 0,
  6082. "_fillType": 0,
  6083. "_sizeMode": 0,
  6084. "_fillCenter": {
  6085. "__type__": "cc.Vec2",
  6086. "x": 0,
  6087. "y": 0
  6088. },
  6089. "_fillStart": 0,
  6090. "_fillRange": 0,
  6091. "_isTrimmedMode": true,
  6092. "_useGrayscale": false,
  6093. "_atlas": null,
  6094. "_id": "46lrCiuAxE2IGtH+l33WKS"
  6095. },
  6096. {
  6097. "__type__": "cc.RigidBody2D",
  6098. "_name": "",
  6099. "_objFlags": 0,
  6100. "__editorExtras__": {},
  6101. "node": {
  6102. "__id__": 199
  6103. },
  6104. "_enabled": true,
  6105. "__prefab": null,
  6106. "enabledContactListener": false,
  6107. "bullet": false,
  6108. "awakeOnLoad": true,
  6109. "_group": 1,
  6110. "_type": 1,
  6111. "_allowSleep": true,
  6112. "_gravityScale": 1,
  6113. "_linearDamping": 0,
  6114. "_angularDamping": 0,
  6115. "_linearVelocity": {
  6116. "__type__": "cc.Vec2",
  6117. "x": 0,
  6118. "y": 0
  6119. },
  6120. "_angularVelocity": 0,
  6121. "_fixedRotation": false,
  6122. "_id": "30UjoATJtHsKcgVoKDo0yi"
  6123. },
  6124. {
  6125. "__type__": "cc.CircleCollider2D",
  6126. "_name": "",
  6127. "_objFlags": 0,
  6128. "__editorExtras__": {},
  6129. "node": {
  6130. "__id__": 199
  6131. },
  6132. "_enabled": true,
  6133. "__prefab": null,
  6134. "tag": 0,
  6135. "_group": 1,
  6136. "_density": 4,
  6137. "_sensor": false,
  6138. "_friction": 0.2,
  6139. "_restitution": 0,
  6140. "_offset": {
  6141. "__type__": "cc.Vec2",
  6142. "x": 0,
  6143. "y": 0
  6144. },
  6145. "_radius": 24,
  6146. "_id": "91ZixsKitNRbq2I2BYRkA8"
  6147. },
  6148. {
  6149. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  6150. "_name": "",
  6151. "_objFlags": 0,
  6152. "__editorExtras__": {},
  6153. "node": {
  6154. "__id__": 199
  6155. },
  6156. "_enabled": true,
  6157. "__prefab": null,
  6158. "_id": "d92c9hXvtIYKedJuXwCQJh"
  6159. },
  6160. {
  6161. "__type__": "cc.Node",
  6162. "_name": "tips",
  6163. "_objFlags": 0,
  6164. "__editorExtras__": {},
  6165. "_parent": {
  6166. "__id__": 2
  6167. },
  6168. "_children": [
  6169. {
  6170. "__id__": 206
  6171. }
  6172. ],
  6173. "_active": true,
  6174. "_components": [
  6175. {
  6176. "__id__": 210
  6177. },
  6178. {
  6179. "__id__": 211
  6180. },
  6181. {
  6182. "__id__": 212
  6183. }
  6184. ],
  6185. "_prefab": null,
  6186. "_lpos": {
  6187. "__type__": "cc.Vec3",
  6188. "x": -506.6265,
  6189. "y": 333.289,
  6190. "z": 0
  6191. },
  6192. "_lrot": {
  6193. "__type__": "cc.Quat",
  6194. "x": 0,
  6195. "y": 0,
  6196. "z": 0,
  6197. "w": 1
  6198. },
  6199. "_lscale": {
  6200. "__type__": "cc.Vec3",
  6201. "x": 1,
  6202. "y": 1,
  6203. "z": 1
  6204. },
  6205. "_mobility": 0,
  6206. "_layer": 33554432,
  6207. "_euler": {
  6208. "__type__": "cc.Vec3",
  6209. "x": 0,
  6210. "y": 0,
  6211. "z": 0
  6212. },
  6213. "_id": "4eX/CLjm1HK7hyVfOQ5M47"
  6214. },
  6215. {
  6216. "__type__": "cc.Node",
  6217. "_name": "Label",
  6218. "_objFlags": 512,
  6219. "__editorExtras__": {},
  6220. "_parent": {
  6221. "__id__": 205
  6222. },
  6223. "_children": [],
  6224. "_active": true,
  6225. "_components": [
  6226. {
  6227. "__id__": 207
  6228. },
  6229. {
  6230. "__id__": 208
  6231. },
  6232. {
  6233. "__id__": 209
  6234. }
  6235. ],
  6236. "_prefab": null,
  6237. "_lpos": {
  6238. "__type__": "cc.Vec3",
  6239. "x": 0,
  6240. "y": 0,
  6241. "z": 0
  6242. },
  6243. "_lrot": {
  6244. "__type__": "cc.Quat",
  6245. "x": 0,
  6246. "y": 0,
  6247. "z": 0,
  6248. "w": 1
  6249. },
  6250. "_lscale": {
  6251. "__type__": "cc.Vec3",
  6252. "x": 1,
  6253. "y": 1,
  6254. "z": 1
  6255. },
  6256. "_mobility": 0,
  6257. "_layer": 33554432,
  6258. "_euler": {
  6259. "__type__": "cc.Vec3",
  6260. "x": 0,
  6261. "y": 0,
  6262. "z": 0
  6263. },
  6264. "_id": "15gB3sE5NJJKabpDaG2kZp"
  6265. },
  6266. {
  6267. "__type__": "cc.UITransform",
  6268. "_name": "",
  6269. "_objFlags": 0,
  6270. "__editorExtras__": {},
  6271. "node": {
  6272. "__id__": 206
  6273. },
  6274. "_enabled": true,
  6275. "__prefab": null,
  6276. "_contentSize": {
  6277. "__type__": "cc.Size",
  6278. "width": 610.747,
  6279. "height": 83.422
  6280. },
  6281. "_anchorPoint": {
  6282. "__type__": "cc.Vec2",
  6283. "x": 0.5,
  6284. "y": 0.5
  6285. },
  6286. "_id": "a5XMjFV3xFPJUt8fSCyeGz"
  6287. },
  6288. {
  6289. "__type__": "cc.Label",
  6290. "_name": "",
  6291. "_objFlags": 0,
  6292. "__editorExtras__": {},
  6293. "node": {
  6294. "__id__": 206
  6295. },
  6296. "_enabled": true,
  6297. "__prefab": null,
  6298. "_customMaterial": null,
  6299. "_srcBlendFactor": 2,
  6300. "_dstBlendFactor": 4,
  6301. "_color": {
  6302. "__type__": "cc.Color",
  6303. "r": 237,
  6304. "g": 255,
  6305. "b": 105,
  6306. "a": 255
  6307. },
  6308. "_string": "1:可以对控制节点加入物理组件\n2:物理组件产生实时位置数据后组装到曲线纹理渲染",
  6309. "_horizontalAlign": 0,
  6310. "_verticalAlign": 1,
  6311. "_actualFontSize": 21,
  6312. "_fontSize": 20,
  6313. "_fontFamily": "Arial",
  6314. "_lineHeight": 30,
  6315. "_overflow": 2,
  6316. "_enableWrapText": true,
  6317. "_font": null,
  6318. "_isSystemFontUsed": true,
  6319. "_spacingX": 0,
  6320. "_isItalic": false,
  6321. "_isBold": false,
  6322. "_isUnderline": false,
  6323. "_underlineHeight": 2,
  6324. "_cacheMode": 0,
  6325. "_enableOutline": false,
  6326. "_outlineColor": {
  6327. "__type__": "cc.Color",
  6328. "r": 0,
  6329. "g": 0,
  6330. "b": 0,
  6331. "a": 255
  6332. },
  6333. "_outlineWidth": 2,
  6334. "_enableShadow": false,
  6335. "_shadowColor": {
  6336. "__type__": "cc.Color",
  6337. "r": 0,
  6338. "g": 0,
  6339. "b": 0,
  6340. "a": 255
  6341. },
  6342. "_shadowOffset": {
  6343. "__type__": "cc.Vec2",
  6344. "x": 2,
  6345. "y": 2
  6346. },
  6347. "_shadowBlur": 2,
  6348. "_id": "1fvEBHexxHArYVEPwpVLpd"
  6349. },
  6350. {
  6351. "__type__": "cc.Widget",
  6352. "_name": "",
  6353. "_objFlags": 0,
  6354. "__editorExtras__": {},
  6355. "node": {
  6356. "__id__": 206
  6357. },
  6358. "_enabled": true,
  6359. "__prefab": null,
  6360. "_alignFlags": 45,
  6361. "_target": null,
  6362. "_left": 0,
  6363. "_right": 0,
  6364. "_top": 0,
  6365. "_bottom": 0,
  6366. "_horizontalCenter": 0,
  6367. "_verticalCenter": 0,
  6368. "_isAbsLeft": true,
  6369. "_isAbsRight": true,
  6370. "_isAbsTop": true,
  6371. "_isAbsBottom": true,
  6372. "_isAbsHorizontalCenter": true,
  6373. "_isAbsVerticalCenter": true,
  6374. "_originalWidth": 42.255859375,
  6375. "_originalHeight": 50.4,
  6376. "_alignMode": 2,
  6377. "_lockFlags": 0,
  6378. "_id": "c4d6m2AGBKnJolRIQlfOpC"
  6379. },
  6380. {
  6381. "__type__": "cc.UITransform",
  6382. "_name": "",
  6383. "_objFlags": 0,
  6384. "__editorExtras__": {},
  6385. "node": {
  6386. "__id__": 205
  6387. },
  6388. "_enabled": true,
  6389. "__prefab": null,
  6390. "_contentSize": {
  6391. "__type__": "cc.Size",
  6392. "width": 610.747,
  6393. "height": 83.422
  6394. },
  6395. "_anchorPoint": {
  6396. "__type__": "cc.Vec2",
  6397. "x": 0.5,
  6398. "y": 0.5
  6399. },
  6400. "_id": "2ep3B2uQJByaAtfQAEQ/rs"
  6401. },
  6402. {
  6403. "__type__": "cc.Sprite",
  6404. "_name": "",
  6405. "_objFlags": 0,
  6406. "__editorExtras__": {},
  6407. "node": {
  6408. "__id__": 205
  6409. },
  6410. "_enabled": true,
  6411. "__prefab": null,
  6412. "_customMaterial": null,
  6413. "_srcBlendFactor": 2,
  6414. "_dstBlendFactor": 4,
  6415. "_color": {
  6416. "__type__": "cc.Color",
  6417. "r": 0,
  6418. "g": 0,
  6419. "b": 0,
  6420. "a": 255
  6421. },
  6422. "_spriteFrame": {
  6423. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  6424. "__expectedType__": "cc.SpriteFrame"
  6425. },
  6426. "_type": 0,
  6427. "_fillType": 0,
  6428. "_sizeMode": 0,
  6429. "_fillCenter": {
  6430. "__type__": "cc.Vec2",
  6431. "x": 0,
  6432. "y": 0
  6433. },
  6434. "_fillStart": 0,
  6435. "_fillRange": 0,
  6436. "_isTrimmedMode": true,
  6437. "_useGrayscale": false,
  6438. "_atlas": null,
  6439. "_id": "c4MIwaMb1KDp/24LA6pPq7"
  6440. },
  6441. {
  6442. "__type__": "cc.Widget",
  6443. "_name": "",
  6444. "_objFlags": 0,
  6445. "__editorExtras__": {},
  6446. "node": {
  6447. "__id__": 205
  6448. },
  6449. "_enabled": true,
  6450. "__prefab": null,
  6451. "_alignFlags": 9,
  6452. "_target": null,
  6453. "_left": 0,
  6454. "_right": 0,
  6455. "_top": 0,
  6456. "_bottom": 588.5235,
  6457. "_horizontalCenter": 0,
  6458. "_verticalCenter": 0,
  6459. "_isAbsLeft": true,
  6460. "_isAbsRight": true,
  6461. "_isAbsTop": true,
  6462. "_isAbsBottom": true,
  6463. "_isAbsHorizontalCenter": true,
  6464. "_isAbsVerticalCenter": true,
  6465. "_originalWidth": 757.8929999999999,
  6466. "_originalHeight": 58.265,
  6467. "_alignMode": 2,
  6468. "_lockFlags": 0,
  6469. "_id": "d3grFtw+JFDKxdnCWhOfsV"
  6470. },
  6471. {
  6472. "__type__": "cc.UITransform",
  6473. "_name": "",
  6474. "_objFlags": 0,
  6475. "__editorExtras__": {},
  6476. "node": {
  6477. "__id__": 2
  6478. },
  6479. "_enabled": true,
  6480. "__prefab": null,
  6481. "_contentSize": {
  6482. "__type__": "cc.Size",
  6483. "width": 1624,
  6484. "height": 750
  6485. },
  6486. "_anchorPoint": {
  6487. "__type__": "cc.Vec2",
  6488. "x": 0.5,
  6489. "y": 0.5
  6490. },
  6491. "_id": "b7wERdaHREfqRbCCi0qlSY"
  6492. },
  6493. {
  6494. "__type__": "cc.Canvas",
  6495. "_name": "",
  6496. "_objFlags": 0,
  6497. "__editorExtras__": {},
  6498. "node": {
  6499. "__id__": 2
  6500. },
  6501. "_enabled": true,
  6502. "__prefab": null,
  6503. "_cameraComponent": {
  6504. "__id__": 4
  6505. },
  6506. "_alignCanvasWithScreen": true,
  6507. "_id": "98vSHQPA9I4Lyrg//ZqJPR"
  6508. },
  6509. {
  6510. "__type__": "cc.Widget",
  6511. "_name": "",
  6512. "_objFlags": 0,
  6513. "__editorExtras__": {},
  6514. "node": {
  6515. "__id__": 2
  6516. },
  6517. "_enabled": true,
  6518. "__prefab": null,
  6519. "_alignFlags": 45,
  6520. "_target": null,
  6521. "_left": 0,
  6522. "_right": 0,
  6523. "_top": 0,
  6524. "_bottom": 0,
  6525. "_horizontalCenter": 0,
  6526. "_verticalCenter": 0,
  6527. "_isAbsLeft": true,
  6528. "_isAbsRight": true,
  6529. "_isAbsTop": true,
  6530. "_isAbsBottom": true,
  6531. "_isAbsHorizontalCenter": true,
  6532. "_isAbsVerticalCenter": true,
  6533. "_originalWidth": 0,
  6534. "_originalHeight": 0,
  6535. "_alignMode": 2,
  6536. "_lockFlags": 0,
  6537. "_id": "eavAYgVOhBKoFyyYj5Ylon"
  6538. },
  6539. {
  6540. "__type__": "cc.SceneGlobals",
  6541. "ambient": {
  6542. "__id__": 217
  6543. },
  6544. "shadows": {
  6545. "__id__": 218
  6546. },
  6547. "_skybox": {
  6548. "__id__": 219
  6549. },
  6550. "fog": {
  6551. "__id__": 220
  6552. },
  6553. "octree": {
  6554. "__id__": 221
  6555. },
  6556. "skin": {
  6557. "__id__": 222
  6558. },
  6559. "lightProbeInfo": {
  6560. "__id__": 223
  6561. },
  6562. "postSettings": {
  6563. "__id__": 224
  6564. },
  6565. "bakedWithStationaryMainLight": false,
  6566. "bakedWithHighpLightmap": false
  6567. },
  6568. {
  6569. "__type__": "cc.AmbientInfo",
  6570. "_skyColorHDR": {
  6571. "__type__": "cc.Vec4",
  6572. "x": 0.2,
  6573. "y": 0.5,
  6574. "z": 0.8,
  6575. "w": 0.520833125
  6576. },
  6577. "_skyColor": {
  6578. "__type__": "cc.Vec4",
  6579. "x": 0.2,
  6580. "y": 0.5,
  6581. "z": 0.8,
  6582. "w": 0.520833125
  6583. },
  6584. "_skyIllumHDR": 20000,
  6585. "_skyIllum": 20000,
  6586. "_groundAlbedoHDR": {
  6587. "__type__": "cc.Vec4",
  6588. "x": 0.2,
  6589. "y": 0.2,
  6590. "z": 0.2,
  6591. "w": 1
  6592. },
  6593. "_groundAlbedo": {
  6594. "__type__": "cc.Vec4",
  6595. "x": 0.2,
  6596. "y": 0.2,
  6597. "z": 0.2,
  6598. "w": 1
  6599. },
  6600. "_skyColorLDR": {
  6601. "__type__": "cc.Vec4",
  6602. "x": 0.452588,
  6603. "y": 0.607642,
  6604. "z": 0.755699,
  6605. "w": 0
  6606. },
  6607. "_skyIllumLDR": 0.8,
  6608. "_groundAlbedoLDR": {
  6609. "__type__": "cc.Vec4",
  6610. "x": 0.618555,
  6611. "y": 0.577848,
  6612. "z": 0.544564,
  6613. "w": 0
  6614. }
  6615. },
  6616. {
  6617. "__type__": "cc.ShadowsInfo",
  6618. "_enabled": false,
  6619. "_type": 0,
  6620. "_normal": {
  6621. "__type__": "cc.Vec3",
  6622. "x": 0,
  6623. "y": 1,
  6624. "z": 0
  6625. },
  6626. "_distance": 0,
  6627. "_planeBias": 1,
  6628. "_shadowColor": {
  6629. "__type__": "cc.Color",
  6630. "r": 76,
  6631. "g": 76,
  6632. "b": 76,
  6633. "a": 255
  6634. },
  6635. "_maxReceived": 4,
  6636. "_size": {
  6637. "__type__": "cc.Vec2",
  6638. "x": 1024,
  6639. "y": 1024
  6640. }
  6641. },
  6642. {
  6643. "__type__": "cc.SkyboxInfo",
  6644. "_envLightingType": 0,
  6645. "_envmapHDR": null,
  6646. "_envmap": null,
  6647. "_envmapLDR": null,
  6648. "_diffuseMapHDR": null,
  6649. "_diffuseMapLDR": null,
  6650. "_enabled": false,
  6651. "_useHDR": true,
  6652. "_editableMaterial": null,
  6653. "_reflectionHDR": null,
  6654. "_reflectionLDR": null,
  6655. "_rotationAngle": 0
  6656. },
  6657. {
  6658. "__type__": "cc.FogInfo",
  6659. "_type": 0,
  6660. "_fogColor": {
  6661. "__type__": "cc.Color",
  6662. "r": 200,
  6663. "g": 200,
  6664. "b": 200,
  6665. "a": 255
  6666. },
  6667. "_enabled": false,
  6668. "_fogDensity": 0.3,
  6669. "_fogStart": 0.5,
  6670. "_fogEnd": 300,
  6671. "_fogAtten": 5,
  6672. "_fogTop": 1.5,
  6673. "_fogRange": 1.2,
  6674. "_accurate": false
  6675. },
  6676. {
  6677. "__type__": "cc.OctreeInfo",
  6678. "_enabled": false,
  6679. "_minPos": {
  6680. "__type__": "cc.Vec3",
  6681. "x": -1024,
  6682. "y": -1024,
  6683. "z": -1024
  6684. },
  6685. "_maxPos": {
  6686. "__type__": "cc.Vec3",
  6687. "x": 1024,
  6688. "y": 1024,
  6689. "z": 1024
  6690. },
  6691. "_depth": 8
  6692. },
  6693. {
  6694. "__type__": "cc.SkinInfo",
  6695. "_enabled": true,
  6696. "_blurRadius": 0.01,
  6697. "_sssIntensity": 3
  6698. },
  6699. {
  6700. "__type__": "cc.LightProbeInfo",
  6701. "_giScale": 1,
  6702. "_giSamples": 1024,
  6703. "_bounces": 2,
  6704. "_reduceRinging": 0,
  6705. "_showProbe": true,
  6706. "_showWireframe": true,
  6707. "_showConvex": false,
  6708. "_data": null,
  6709. "_lightProbeSphereVolume": 1
  6710. },
  6711. {
  6712. "__type__": "cc.PostSettingsInfo",
  6713. "_toneMappingType": 0
  6714. }
  6715. ]